:root {
  --bg: #f7f7f2;
  --bg-soft: #eef5f0;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --surface-strong: #e7efe9;
  --text: #172227;
  --text-soft: #4f5f63;
  --text-muted: #74848a;
  --line: rgba(23, 34, 39, 0.1);
  --brand: #1d5b52;
  --brand-strong: #143f39;
  --brand-soft: #d6ebe5;
  --accent: #d46a4a;
  --accent-strong: #bc5836;
  --accent-soft: #ffe0d4;
  --gold: #c9a86b;
  --gold-soft: #eadfc4;
  --highlight: #e7d9bb;
  --shadow-sm: 0 18px 40px rgba(23, 34, 39, 0.08);
  --shadow-md: 0 28px 60px rgba(23, 34, 39, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --max-width: 1240px;
  --header-height: 118px;
  --font-body: 'Manrope', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 106, 74, 0.16), transparent 36%),
    radial-gradient(circle at 100% 10%, rgba(29, 91, 82, 0.16), transparent 30%),
    linear-gradient(180deg, #fbfcf8 0%, #f5f4ee 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}

.site-shell::before {
  top: -8rem;
  right: -8rem;
  background: rgba(229, 125, 92, 0.22);
}

.site-shell::after {
  bottom: -10rem;
  left: -8rem;
  background: rgba(29, 91, 82, 0.14);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(247, 247, 242, 0.78);
  border-bottom: 1px solid rgba(23, 34, 39, 0.06);
}

.nav-container {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  min-width: 0;
}

.logo-img {
  width: 126px;
  height: 126px;
  object-fit: contain;
  background: transparent;
  padding: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--brand-strong);
  text-transform: uppercase;
}

.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-strong);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.site-nav {
  justify-self: center;
  min-width: 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-strong);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: white;
  box-shadow: 0 14px 32px rgba(216, 102, 66, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
  color: var(--brand-strong);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(23, 34, 39, 0.12);
  color: var(--text);
}

.hero,
.page-hero {
  padding: 5rem 0 4rem;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 3rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title,
.post-title {
  margin: 0;
  font-family: var(--font-display);
  color: var(--brand-strong);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  max-width: 12ch;
}

.page-hero h1,
.post-title {
  font-size: clamp(3.1rem, 7vw, 5.2rem);
  max-width: 12ch;
}

.page-hero .post-title {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  max-width: 22ch;
  line-height: 1;
}

.page-hero .post-title span {
  color: var(--accent);
  display: inline;
}

.page-hero .post-lead {
  color: var(--text-soft);
  font-size: 1.18rem;
  line-height: 1.55;
  max-width: 42ch;
  margin-top: 1.6rem;
}

.page-hero .post-lead strong {
  color: var(--brand-strong);
  font-weight: 700;
}

.hero h1 span,
.page-hero h1 span,
.section-title span {
  color: var(--accent);
}

.hero-description,
.page-intro,
.section-subtitle,
.content-prose,
.service-copy p,
.contact-copy p,
.fees-copy p,
.blog-card-excerpt,
.post-content p,
.post-content li,
.story-rich-text p {
  color: var(--text-soft);
  font-size: 1.04rem;
}

.hero-actions,
.page-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 34, 39, 0.08);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  font-size: 1.15rem;
  color: var(--brand-strong);
  margin-bottom: 0.3rem;
}

.stat-card span {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.hero-portrait-card,
.image-card,
.glass-panel,
.content-card,
.timeline-card,
.fees-card,
.contact-panel,
.post-content,
.feature-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 34, 39, 0.08);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.hero-portrait-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.portrait-caption {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 0.4rem 0.2rem;
}

.portrait-caption strong {
  color: var(--brand-strong);
  font-size: 1.1rem;
}

.portrait-caption span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.page-hero {
  position: relative;
}

.page-hero-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  margin-top: 0.9rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.page-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 780px;
}

.section-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(238, 245, 240, 0.65), rgba(255, 255, 255, 0));
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2));
}

.features-grid,
.service-grid,
.fees-grid,
.blog-grid,
.trust-grid {
  display: grid;
  gap: 1.5rem;
}

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

.feature-card,
.service-card,
.fees-card {
  padding: 1.7rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
  color: var(--brand-strong);
  background: linear-gradient(135deg, var(--accent-soft), var(--brand-soft));
}

.feature-title,
.service-card h3,
.fees-card h3,
.contact-info-block h3,
.footer-title,
.blog-card-title {
  margin: 0 0 0.7rem;
  color: var(--brand-strong);
  font-size: 1.35rem;
  line-height: 1.2;
}

.split-section,
.story-layout,
.contact-layout,
.fees-layout,
.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.content-card,
.glass-panel,
.contact-panel,
.post-content {
  padding: 2rem;
}

.story-rich-text {
  display: grid;
  gap: 1rem;
}

.quote-block {
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--accent);
  background: rgba(229, 125, 92, 0.08);
  color: var(--brand-strong);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.05;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  background: white;
  border: 1px solid var(--line);
  color: var(--brand-strong);
  font-size: 0.85rem;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  padding: 1.2rem 1.3rem;
}

.timeline-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-strong);
}

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

.service-card {
  display: grid;
  gap: 1rem;
  height: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.38s ease, filter 0.38s ease;
}

.service-copy {
  padding: 1.45rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 34, 39, 0.08);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.service-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.service-list li + li {
  margin-top: 0.45rem;
}

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

.fees-card .price-label {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
  background: rgba(29, 91, 82, 0.1);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fees-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.fees-card ul li + li {
  margin-top: 0.45rem;
}

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

.testimonial-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.testimonial-marquee {
  --testimonial-columns: 4;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.testimonial-control {
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(23, 34, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-strong);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.testimonial-control:hover,
.testimonial-control:focus-visible {
  background: var(--accent-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  outline: none;
}

.testimonial-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  transition: transform 0.7s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - (var(--testimonial-columns) - 1) * 1.25rem) / var(--testimonial-columns));
  min-width: 0;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 34, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 245, 241, 0.68));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  min-height: 8.2rem;
}

.testimonial-rating {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

.testimonial-meta {
  display: grid;
  gap: 0.2rem;
}

.testimonial-meta strong {
  color: var(--brand-strong);
  font-size: 0.96rem;
}

.testimonial-meta span {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
  .testimonial-marquee {
    --testimonial-columns: 2;
  }
}

@media (max-width: 680px) {
  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .testimonial-control {
    display: none;
  }

  .testimonial-marquee {
    --testimonial-columns: 1;
  }

  .testimonial-card p {
    min-height: 0;
  }
}

.blog-card {
  overflow: hidden;
  display: grid;
  min-width: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.38s ease, filter 0.38s ease;
}

.blog-card-content {
  padding: 1.5rem;
  display: grid;
  gap: 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 34, 39, 0.08);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.blog-meta,
.post-meta {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  color: var(--accent-strong);
  font-weight: 800;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-panel {
  height: 100%;
}

.contact-method {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.contact-method i,
.contact-method > .icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  border-radius: 14px;
  color: var(--brand-strong);
  background: linear-gradient(135deg, var(--accent-soft), var(--brand-soft));
  stroke-width: 1.75;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.social-row a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  color: var(--brand-strong);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-strong);
}

.input,
.textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(23, 34, 39, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: rgba(29, 91, 82, 0.5);
  box-shadow: 0 0 0 4px rgba(29, 91, 82, 0.09);
}

.textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.post-header {
  padding: 3rem 0 1rem;
}

.post-content {
  max-width: 860px;
  margin: 0 auto 4rem;
}

.post-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 1rem 0 1.5rem;
  transition: transform 0.38s ease, filter 0.38s ease, box-shadow 0.38s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-portrait-card:hover,
  .page-hero-card:hover,
  .service-card:hover,
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }

  .hero-portrait-card:hover img,
  .page-hero-card:hover img,
  .service-card:hover img,
  .blog-card:hover .blog-card-img,
  .post-content img:hover {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.04);
  }

  .service-card:hover,
  .blog-card:hover {
    border-color: rgba(229, 125, 92, 0.28);
  }

  .post-content img:hover {
    box-shadow: var(--shadow-md);
  }

  .testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
  }
}

.post-content h2 {
  margin: 2rem 0 0.8rem;
  font-family: var(--font-display);
  color: var(--brand-strong);
  font-size: 2.4rem;
  line-height: 1;
}

.post-content hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.post-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  padding: 1rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
  padding: 2.4rem 0 1.8rem;
  border-top: 1px solid var(--line);
}

.footer-brand p,
.footer-links a,
.footer-bottom {
  color: var(--text-soft);
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-links-group a:hover,
.footer-brand a:hover {
  color: var(--accent-strong);
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 34, 39, 0.08);
  font-size: 0.92rem;
}

.hide-desktop {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-section,
  .story-layout,
  .contact-layout,
  .fees-layout,
  .services-layout,
  .service-grid,
  .features-grid,
  .fees-grid,
  .blog-grid,
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero-grid,
  .contact-layout,
  .split-section,
  .story-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-description,
  .page-intro {
    max-width: 65ch;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 92px;
  }

  .container {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .nav-container {
    gap: 0.75rem;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .logo-container {
    gap: 0.75rem;
  }

  .logo-img {
    width: 88px;
    height: 88px;
  }

  .mobile-menu-btn {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.75rem;
    right: 0.75rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(23, 34, 39, 0.08);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero,
  .page-hero,
  .section {
    padding: 3.2rem 0;
  }

  .eyebrow {
    margin-bottom: 0.85rem;
    padding: 0.38rem 0.72rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero-highlights,
  .features-grid,
  .service-grid,
  .fees-grid,
  .blog-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .post-footer-row {
    align-items: flex-start;
  }

  .logo-text {
    font-size: 1.25rem;
    line-height: 1;
  }

  .hero-description,
  .page-intro,
  .section-subtitle,
  .content-prose,
  .service-copy p,
  .contact-copy p,
  .fees-copy p,
  .blog-card-excerpt,
  .post-content p,
  .post-content li,
  .story-rich-text p {
    font-size: 1rem;
  }

  .portrait-caption {
    padding: 0.85rem 0 0;
  }

  .quote-block {
    font-size: 1.65rem;
    padding: 1.15rem 1.2rem;
  }

  .post-content h2 {
    font-size: 2rem;
  }

  .hide-mobile {
    display: none;
  }

  .hide-desktop {
    display: initial;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 82px;
  }

  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .nav-container {
    min-height: var(--header-height);
  }

  .logo-img {
    width: 74px;
    height: 74px;
  }

  .logo-text {
    font-size: 0.98rem;
    letter-spacing: 0.02em;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 16vw, 4rem);
    max-width: 10ch;
  }

  .page-hero h1,
  .post-title,
  .section-title {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
    line-height: 0.98;
  }

  .hero,
  .page-hero,
  .section {
    padding: 2.6rem 0;
  }

  .section-header {
    gap: 0.75rem;
    margin-bottom: 1.4rem;
  }

  .hero-actions,
  .page-actions,
  .card-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    padding: 0.9rem 1.15rem;
  }

  .content-card,
  .glass-panel,
  .contact-panel,
  .post-content,
  .feature-card,
  .fees-card {
    padding: 1.4rem;
  }

  .service-copy,
  .blog-card-content,
  .timeline-card {
    padding: 1.25rem;
  }

  .page-hero-card {
    margin-top: 0.35rem;
  }

  .quote-block {
    font-size: 1.4rem;
    line-height: 1.1;
  }

  .testimonial-card {
    padding: 1.2rem;
  }

  .testimonial-rating {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .testimonial-meta strong {
    font-size: 0.92rem;
  }

  .testimonial-meta span {
    font-size: 0.78rem;
  }

  .post-content h2 {
    font-size: 1.75rem;
  }

  .contact-method {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .footer-container,
  .footer-bottom {
    text-align: center;
  }

  .footer-links-group ul,
  .social-row {
    justify-content: center;
  }

  .footer {
    padding-bottom: 1.2rem;
  }
}

/* ==========================================================================
   Accessibility & utility additions (2026 modernisation)
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--brand-strong);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.nav-link:focus-visible {
  outline-offset: 4px;
}

/* Inline SVG icon defaults (replaces FontAwesome) */
.icon {
  width: 1.1em;
  height: 1.1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: -0.125em;
}

.icon-lg {
  width: 1.5em;
  height: 1.5em;
}

.icon-xl {
  width: 2rem;
  height: 2rem;
  stroke-width: 1.6;
}

.social-row a .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.service-icon .icon,
.feature-card .icon,
.contact-method .icon,
.about-card .icon,
.method-card .icon {
  color: var(--brand);
}

/* Trust strip under homepage hero */
.trust-strip {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 500;
}

.trust-strip__item .icon {
  color: var(--brand);
  width: 1.1rem;
  height: 1.1rem;
}

@media (max-width: 680px) {
  .trust-strip {
    gap: 0.9rem 1.5rem;
    padding: 1rem 1.25rem;
  }

  .trust-strip__item {
    font-size: 0.82rem;
  }
}

/* Form reassurance line under submit button */
.form-reassurance {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-reassurance .icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--brand);
}

/* Legal / content pages */
.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin: 0.4rem 0 1rem;
  color: var(--brand-strong);
}

.page-intro {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 62ch;
}

.post-content .content-prose {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Image sizing safeguard to prevent CLS on responsive picture elements */
.portrait-picture,
.portrait-picture img {
  display: block;
  width: 100%;
  height: auto;
}

/* Compact hero image variant — used where the headline is the star
   and the illustration is a support element (e.g. the blog index). */
.page-hero-card--compact {
  justify-self: end;
  align-self: center;
  width: min(100%, 380px);
  margin-top: 0;
}

.page-hero-card--compact img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
}

@media (max-width: 860px) {
  .page-hero-card--compact {
    justify-self: center;
    width: min(100%, 320px);
  }
}

/* Muted read-more link for "coming soon" blog cards */
.read-more--muted {
  color: var(--text-muted);
  cursor: default;
  font-style: italic;
  pointer-events: none;
}

.read-more--muted::after {
  display: none;
}

/* Honeypot anti-spam field (visually hidden but focusable-hidden) */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.admin-bar .header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}
