:root {
  --ink: #1B2A38;
  --slate: #55636D;
  --sage: #6F8C7F;
  --sage-tint: #EDF1EE;
  --paper: #F6F4EF;
  --gold: #AD8A4E;
  --line: #DAD4C5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

h1,
h2,
h3,
h4 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--sage);
}

.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-family: 'Newsreader', serif;
  font-size: 19px;
  font-weight: 600;
}

.logo span {
  color: var(--sage);
}

.navlinks {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
}

.navlinks a:hover {
  color: var(--ink);
}

@media(max-width:760px) {
  .navlinks {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

@media(max-width:860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.12;
  margin: 18px 0 22px;
}

.hero p.lede {
  font-size: 18px;
  color: var(--slate);
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.credential-line {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: var(--slate);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  max-width: 440px;
}

.pulse-box {
  position: relative;
}

.pulse-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 14px;
  text-align: center;
}

.pulse-jagged,
.pulse-calm {
  grid-column: 1;
  grid-row: 1;
}

.pulse-layer {
  display: grid;
}

.pulse-jagged {
  animation: fadeOut 1.8s ease forwards 1.4s;
}

.pulse-calm {
  opacity: 0;
  animation: fadeIn 1.8s ease forwards 1.4s;
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-jagged {
    animation: none;
    opacity: 0;
  }

  .pulse-calm {
    animation: none;
    opacity: 1;
  }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}

@media(max-width:760px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item b {
  font-family: 'Newsreader';
  font-size: 17px;
  color: var(--ink);
}

.trust-item span {
  font-family: 'IBM Plex Mono';
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- FAMILY PRACTICE ---------- */
.family {
  background: var(--paper);
}

.family-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

@media(max-width:760px) {
  .family-card {
    grid-template-columns: 1fr;
  }
}

.family-portrait {
  background:
    radial-gradient(circle at 70% 25%, rgba(173, 138, 78, 0.28), transparent 55%),
    linear-gradient(160deg, #6F8C7F 0%, #4C6459 65%, #3A4F46 100%);
  min-height: 260px;
  position: relative;
}

.family-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 34px);
}

.family-body {
  padding: 40px 44px;
}

.family-body .eyebrow {
  color: var(--sage);
}

.family-body h3 {
  font-size: 24px;
  margin: 10px 0 4px;
}

.family-role {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14.5px;
  color: var(--slate);
  margin-bottom: 16px;
}

.family-body p {
  color: var(--slate);
  font-size: 15px;
  max-width: 56ch;
  margin-bottom: 18px;
}

.family-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.family-tag {
  font-family: 'IBM Plex Mono';
  font-size: 11px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  padding: 6px 12px;
  color: var(--ink);
}

/* ---------- SECTION HELPERS ---------- */
section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 32px;
  margin-top: 12px;
}

.divider-line {
  border: none;
  border-top: 1px solid var(--line);
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

@media(max-width:860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.portrait {
  aspect-ratio: 4/5;
  border-radius: 2px;
  background:
    radial-gradient(circle at 30% 20%, rgba(111, 140, 127, 0.35), transparent 55%),
    linear-gradient(160deg, #26384A 0%, #1B2A38 60%, #14202B 100%);
  position: relative;
  overflow: hidden;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0px, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 34px);
}

.cred-card {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: var(--slate);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cred-card b {
  color: var(--ink);
}

.about-body p {
  color: var(--slate);
  margin-bottom: 16px;
  max-width: 60ch;
}

.about-body h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.about-role {
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Inter';
  font-size: 15px;
}

/* ---------- APPROACH ---------- */
.approach {
  background: var(--sage-tint);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media(max-width:760px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

.approach-card {
  background: var(--sage-tint);
  padding: 36px 32px;
}

.approach-card .num {
  font-family: 'IBM Plex Mono';
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.approach-card h4 {
  font-size: 21px;
  margin: 14px 0 10px;
}

.approach-card p {
  color: var(--slate);
  font-size: 15px;
}

/* ---------- QUOTE PLACEHOLDER ---------- */
.quote-section {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.quote-section .wrap {
  max-width: 680px;
}

.quote-section .eyebrow {
  color: #9FB6A9;
}

.quote-mark {
  font-family: 'Newsreader';
  font-size: 19px;
  font-style: italic;
  color: #C9D3CB;
  margin-top: 18px;
  line-height: 1.7;
}

.quote-note {
  font-family: 'IBM Plex Mono';
  font-size: 11px;
  color: #7E8E97;
  margin-top: 22px;
  letter-spacing: 0.04em;
}

/* ---------- YAZILAR ---------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media(max-width:900px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:520px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -14px rgba(27, 42, 56, 0.25);
}

.article-thumb {
  aspect-ratio: 4/3;
}

.article-body {
  padding: 18px 18px 22px;
}

.article-tag {
  font-family: 'IBM Plex Mono';
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.article-title {
  font-family: 'Newsreader';
  font-size: 18px;
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.35;
}

.thumb-a {
  background: linear-gradient(135deg, #DDE6E1, #B9C9C0);
}

.thumb-b {
  background: linear-gradient(135deg, #E7E1D3, #C9BC9E);
}

.thumb-c {
  background: linear-gradient(135deg, #D9E0E3, #A9BAC2);
}

.thumb-d {
  background: linear-gradient(135deg, #EAE2DD, #C9B6AC);
}

/* ---------- ORGS ---------- */
.orgs {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.orgs .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  justify-content: space-between;
  align-items: center;
  padding: 36px 32px;
}

.org-item {
  font-family: 'IBM Plex Mono';
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.03em;
}

/* ---------- CONTACT / FOOTER ---------- */
.contact {
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  max-width: 16ch;
  margin: 14px auto 20px;
}

.contact p {
  color: var(--slate);
  max-width: 48ch;
  margin: 0 auto 30px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  background: var(--ink);
  color: #B9C3CB;
  padding: 52px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #2C3D4B;
}

.footer-grid .logo {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 12.5px;
  color: #7E8E97;
  flex-wrap: wrap;
  gap: 10px;
}

:root {
  --shadow: 0 20px 60px rgba(27, 42, 56, .09)
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 25px;
  color: var(--ink);
  cursor: pointer
}

.article-card {
  display: block;
  overflow: hidden
}

.article-thumb img,
.portrait img,
.family-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.article-thumb {
  overflow: hidden
}

.article-card:hover img {
  transform: scale(1.04)
}

.article-thumb img {
  transition: transform .4s
}

.article-detail {
  max-width: 760px;
  margin: auto
}

.article-detail h1 {
  font-size: clamp(35px, 5vw, 58px);
  line-height: 1.12;
  margin: 12px 0 22px
}

.article-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--slate);
  white-space: pre-wrap
}

.article-image {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  margin: 28px 0
}

.portrait {
  overflow: hidden
}

.family-portrait {
  overflow: hidden
}

.family-portrait img {
  position: relative;
  z-index: 1
}

.logo {
  white-space: nowrap
}

.pulse-box {
  padding: 48px 28px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 25%, #fdfdfb, #e7ede7);
  box-shadow: var(--shadow)
}

.quote-section h2 {
  color: var(--paper)
}

.empty-note {
  color: var(--slate)
}

@media(max-width:760px) {
  .nav {
    gap: 12px;
    padding: 16px 20px
  }

  .nav-toggle {
    display: block;
    margin-left: auto
  }

  .navlinks {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 18px 24px;
    flex-direction: column;
    gap: 18px
  }

  .navlinks.open {
    display: flex
  }

  .nav>.btn {
    display: none
  }

  .hero {
    padding: 60px 0
  }

  .wrap {
    padding: 0 20px
  }

  .family-body {
    padding: 28px
  }

  .trust-item {
    border-bottom: 1px solid var(--line)
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px
  }

  .pulse-box {
    padding: 20px
  }
}

.article-byline {
  font-size: 13px;
  color: var(--slate);
  margin: 16px 0
}

.article-detail .lede {
  font-size: 19px;
  color: var(--slate);
  margin: 25px 0
}

.article-content {
  overflow-wrap: anywhere
}

.article-card .article-body p {
  font-size: 14px;
  color: var(--slate);
  margin-top: 10px
}

.section-head p {
  color: var(--slate);
  margin-top: 14px
}

section[id] {
  scroll-margin-top: 88px
}

/* Editorial redesign */
:root {
  --line: #dedbd1
}

body {
  overflow-x: hidden
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px
}

.nav {
  min-height: 79px
}

.navlinks a {
  transition: color .2s
}

.hero {
  padding: 85px 0 58px;
  background: linear-gradient(125deg, #f6f4ef 46%, #edf2ee 100%)
}

.hero-grid {
  grid-template-columns: 1.08fr .92fr;
  gap: 70px
}

.hero-copy {
  padding: 15px 0
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.hero .eyebrow:before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold)
}

.hero h1 {
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -.025em;
  max-width: 11ch;
  margin: 25px 0
}

.hero p.lede {
  font-size: 18px;
  line-height: 1.8;
  max-width: 46ch
}

.hero-actions {
  align-items: center;
  gap: 22px;
  margin: 34px 0 34px
}

.text-link,
.all-link {
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 5px
}

.text-link:hover,
.all-link:hover {
  color: var(--sage)
}

.credential-line {
  max-width: 520px;
  line-height: 1.7
}

.hero-visual {
  position: relative;
  min-width: 0
}

.hero-photo,
.hero-art {
  aspect-ratio: 4/4.5;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  background: #26384a
}

.hero-art {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #243845, #152530);
  color: #ecede7;
  overflow: hidden
}

.hero-art-label {
  font: 11px 'IBM Plex Mono', monospace;
  letter-spacing: .16em;
  color: #c6b187
}

.hero-art .pulse-layer {
  margin: 25px -60px -70px;
  opacity: .8
}

.hero-art-word {
  font: 500 clamp(38px, 5vw, 68px)/1.04 'Newsreader', serif;
  letter-spacing: -.03em;
  position: relative;
  z-index: 2
}

.hero-art-word em {
  color: #a8c0ae
}

.hero-visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  background: #e8eee9;
  padding: 16px 20px;
  color: #516658;
  font: 10px 'IBM Plex Mono', monospace;
  letter-spacing: .1em
}

.trust-strip {
  box-shadow: 0 16px 48px rgba(27, 42, 56, .04)
}

.services {
  background: #f9f8f4
}

.services .section-head {
  max-width: 710px
}

.services .section-head h2 {
  font-size: clamp(30px, 3.5vw, 43px);
  line-height: 1.16
}

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

.service-card {
  min-height: 270px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(27, 42, 56, .09);
  border-color: #afc5b7
}

.service-index {
  font: 11px 'IBM Plex Mono', monospace;
  color: var(--sage);
  letter-spacing: .11em;
  text-transform: uppercase
}

.service-card h2,
.service-card h3 {
  font-size: clamp(23px, 2.6vw, 31px);
  line-height: 1.18;
  margin: 26px 0 9px
}

.service-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
  max-width: 48ch
}

.card-link {
  color: #4b7564;
  font-size: 13px;
  font-weight: 600
}

.service-card .card-link {
  margin-top: auto;
  padding-top: 24px
}

.all-link {
  display: inline-block;
  margin-top: 30px
}

.service-hero {
  background: #e9efea;
  padding: 80px 0 65px
}

.service-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.12;
  max-width: 850px;
  margin: 25px 0
}

.service-hero .eyebrow {
  display: inline-block;
  margin-bottom: 15px
}

.service-lead {
  font-size: 19px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 650px
}

.service-tag {
  margin-top: 42px;
  color: var(--sage);
  font: 12px 'IBM Plex Mono', monospace;
  letter-spacing: .14em;
  text-transform: uppercase
}

.service-detail {
  padding-top: 60px
}

.service-cta {
  background: #e7eee8;
  padding: 28px 32px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.service-cta h2 {
  font-size: 30px;
  margin: 8px 0
}

.service-cta p {
  color: var(--slate)
}

.articles-grid {
  gap: 18px
}

.article-card {
  border-radius: 2px;
  display: flex;
  flex-direction: column
}

.article-thumb {
  position: relative;
  overflow: hidden
}

.article-placeholder {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(27, 42, 56, .58);
  font: 600 34px 'Newsreader', serif
}

.placeholder-rule {
  height: 34px;
  width: 1px;
  background: currentColor
}

.article-placeholder::first-line {
  font-size: 24px
}

.article-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 23px
}

.article-title {
  font-size: 22px;
  line-height: 1.28;
  margin: 10px 0
}

.article-excerpt {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.article-bottom {
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--slate)
}

.article-card:hover .card-link {
  color: var(--ink)
}

.process {
  background: #e8eee9
}

.process-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px
}

.process-head h2 {
  font-size: clamp(31px, 3.6vw, 44px);
  line-height: 1.14;
  margin: 14px 0 0;
  max-width: 560px
}

.process-head p {
  max-width: 280px;
  color: var(--slate)
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #cdd9ce;
  border: 1px solid #cdd9ce
}

.process-step {
  padding: 34px;
  background: #e8eee9;
  min-height: 230px
}

.process-step>span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #8fa99a;
  color: #4a6758;
  font: 12px 'IBM Plex Mono', monospace
}

.process-step h3 {
  font-size: 24px;
  margin: 23px 0 7px
}

.process-step p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65
}

.contact {
  background: #f9f8f4
}

@media(max-width:900px) {
  .hero-grid {
    gap: 36px
  }

  .hero h1 {
    font-size: clamp(40px, 5vw, 55px)
  }

  .hero-art,
  .hero-photo {
    min-height: 420px
  }

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

@media(max-width:760px) {
  .nav {
    min-height: 67px
  }

  .hero {
    padding: 48px 0 35px
  }

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

  .hero-copy {
    padding: 0
  }

  .hero h1 {
    font-size: clamp(41px, 10vw, 56px);
    margin: 18px 0
  }

  .hero p.lede {
    font-size: 16px
  }

  .hero-actions {
    margin: 26px 0;
    gap: 18px
  }

  .hero-art,
  .hero-photo {
    min-height: 0;
    aspect-ratio: 5/4
  }

  .hero-art {
    padding: 25px
  }

  .hero-art-word {
    font-size: 45px
  }

  .hero-art .pulse-layer {
    position: absolute;
    right: 0;
    top: 80px;
    width: 65%;
    opacity: .35
  }

  .hero-visual-caption {
    font-size: 9px
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-item {
    padding: 16px;
    min-height: 90px
  }

  .trust-item b {
    font-size: 15px
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .service-card {
    min-height: 230px;
    padding: 26px
  }

  .services .section-head {
    margin-bottom: 25px
  }

  .service-hero {
    padding: 55px 0
  }

  .service-hero h1 {
    font-size: 42px
  }

  .service-lead {
    font-size: 16px
  }

  .process-head {
    display: block;
    margin-bottom: 27px
  }

  .process-grid {
    grid-template-columns: 1fr
  }

  .process-step {
    min-height: 0;
    padding: 24px
  }

  .process-step h3 {
    margin: 14px 0 6px
  }

  .service-cta {
    display: block;
    padding: 25px
  }

  .service-cta .btn {
    margin-top: 15px
  }

  .article-title {
    font-size: 20px
  }
}

@media(max-width:520px) {
  section {
    padding: 64px 0
  }

  .articles-grid {
    grid-template-columns: 1fr
  }

  .article-thumb {
    aspect-ratio: 16/9
  }

  .article-body {
    padding: 21px
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center
  }

  .hero-actions .text-link {
    margin: 0 auto
  }

  .hero-art-word {
    font-size: 39px
  }

  .hero-visual-caption span:last-child {
    display: none
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr
  }

  .trust-item span {
    font-size: 9px
  }

  .footer-grid {
    gap: 24px
  }

  .footer-links {
    width: 100%
  }

  .service-hero h1 {
    font-size: 36px
  }
}

@media(prefers-reduced-motion:reduce) {

  .service-card,
  .article-card,
  .article-thumb img {
    transition: none
  }
}

/* Fixed contact actions */
.floating-whatsapp {
  position: fixed;
  left: clamp(16px, 2.5vw, 38px);
  bottom: clamp(20px, 2.5vw, 36px);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  padding: 8px 15px 8px 9px;
  background: #1d4235;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  box-shadow: 0 12px 38px rgba(21, 51, 40, .27);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #285b47;
  box-shadow: 0 18px 42px rgba(21, 51, 40, .32)
}

.floating-whatsapp-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #d7e8d8;
  color: #194736
}

.floating-whatsapp-icon svg {
  width: 25px;
  height: 25px
}

.floating-whatsapp-copy {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.floating-whatsapp-copy small {
  font: 10px 'IBM Plex Mono', monospace;
  letter-spacing: .13em;
  color: #bad5c3
}

.floating-whatsapp-copy strong {
  font: 600 14px 'Inter', sans-serif;
  white-space: nowrap
}

.floating-whatsapp-arrow {
  align-self: flex-start;
  margin-left: 10px;
  color: #bad5c3
}

.mobile-contact-bar {
  display: none
}

@media(max-width:760px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px))
  }

  .floating-whatsapp {
    display: none
  }

  .mobile-contact-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 80;
    display: flex;
    gap: 10px;
    padding: 10px max(15px, env(safe-area-inset-right, 0px)) calc(10px + env(safe-area-inset-bottom, 0px)) max(15px, env(safe-area-inset-left, 0px));
    background: rgba(246, 244, 239, .97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(27, 42, 56, .09);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px)
  }

  .mobile-contact-bar a {
    flex: 1;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    font: 600 15px 'Inter', sans-serif
  }

  .mobile-contact-bar svg {
    width: 20px;
    height: 20px;
    flex: none
  }

  .mobile-contact-whatsapp {
    background: #1d5540;
    color: #fff
  }

  .mobile-contact-whatsapp:hover {
    background: #27694e
  }

  .mobile-contact-call {
    background: #fff;
    color: var(--ink);
    border: 1px solid #cfd7d0
  }

  .mobile-contact-call:hover {
    background: #e8eee9
  }
}

@media(max-width:360px) {
  .mobile-contact-bar {
    gap: 7px;
    padding-left: 10px;
    padding-right: 10px
  }

  .mobile-contact-bar a {
    font-size: 14px
  }
}

@media(prefers-reduced-motion:reduce) {
  .floating-whatsapp {
    transition: none
  }
}

.footer-bottom a {
  color: #c3d8ca;
  text-decoration: underline;
  text-underline-offset: 3px
}

.footer-bottom a:hover {
  color: #fff
}