:root {
  --cream: #f4eddf;
  --cream-2: #fffaf1;
  --beige: #e8ddca;
  --sage: #78866b;
  --sage-dark: #4c5b47;
  --olive: #657252;
  --gold: #c8a45d;
  --charcoal: #25231f;
  --muted: #70695e;
  --line: rgba(76, 91, 71, 0.18);
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(56, 48, 38, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(200, 164, 93, 0.22), transparent 32rem),
    linear-gradient(180deg, var(--cream-2), var(--cream));
  font-size: 18px;
  line-height: 1.62;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  padding: .6rem 1rem;
  background: var(--charcoal);
  color: white;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(255, 250, 241, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--cream-2);
  font-weight: 800;
  letter-spacing: .04em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}
.brand small { color: var(--muted); font-size: .78rem; }

.nav-links {
  display: flex;
  gap: clamp(.8rem, 2vw, 1.8rem);
  color: var(--muted);
  font-size: .95rem;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover { color: var(--sage-dark); }

.section-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .86fr);
  column-gap: clamp(2rem, 6vw, 5rem);
  row-gap: 1.6rem;
  align-items: start;
  padding: clamp(3rem, 7vw, 6rem) 0 3rem;
}

.eyebrow {
  display: block;
  margin: 0 0 .85rem;
  color: var(--olive);
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: none;
  font-size: 1rem;
  line-height: 1.3;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3.55vw, 3.35rem);
  font-weight: 760;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 740;
}

h3 {
  font-size: clamp(1.32rem, 1.8vw, 1.58rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
  font-weight: 760;
}

.hero-text {
  max-width: 680px;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.75vw, 1.2rem);
  line-height: 1.58;
}

.hero-text p {
  margin: 0;
}

.hero-text p + p {
  margin-top: .85rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 14px 30px rgba(76, 91, 71, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: #3f4d3b;
  box-shadow: 0 18px 40px rgba(76, 91, 71, .26);
}
.btn-small {
  min-height: 42px;
  padding: .55rem 1rem;
  font-size: .92rem;
}
.btn-ghost {
  background: rgba(255, 253, 248, .72);
  color: var(--sage-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--sage-dark);
  border-color: rgba(76, 91, 71, .34);
}

.quick-info {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  gap: .65rem;
  max-width: 620px;
  margin: 0;
  padding: 1.05rem 1.15rem;
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: rgba(255, 253, 248, .48);
}
.quick-info div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 1rem;
  align-items: baseline;
}
.quick-info dt {
  color: var(--sage-dark);
  font-weight: 800;
  font-size: .86rem;
}
.quick-info dd {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}
.hero-points {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: .55rem;
  width: min(100%, 430px);
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
  color: var(--sage-dark);
  font-size: 1rem;
  font-weight: 760;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.hero-points li::before {
  content: "";
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--gold);
}

.hero-media {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  isolation: isolate;
  align-self: start;
  padding-top: clamp(3.15rem, 5vw, 4.6rem);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 9% -8% -6% 12%;
  z-index: -1;
  border-radius: 44% 56% 48% 52%;
  background: linear-gradient(135deg, rgba(120, 134, 107, .32), rgba(200, 164, 93, .22));
}
.hero-media img,
.portrait-stack img,
.contact-card img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.hero-media img {
  width: min(100%, 430px);
  height: clamp(480px, 39vw, 540px);
  margin-left: auto;
  margin-top: clamp(-3.2rem, -3.8vw, -2.1rem);
  object-fit: cover;
  object-position: center top;
}
.split-section {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.split-section.reverse { grid-template-columns: 1fr .82fr; }
.split-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.35vw, 1.16rem);
}

.portrait-stack img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
}

.about-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-card {
  display: grid;
  gap: clamp(1.7rem, 3.2vw, 2.7rem);
  max-width: none;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, .68);
  box-shadow: 0 18px 54px rgba(56, 48, 38, .08);
}

.about-copy {
  max-width: 840px;
}

.about-copy h2 {
  max-width: 760px;
  font-size: clamp(1.95rem, 3vw, 2.85rem);
}

.about-copy p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
}

.about-details {
  display: grid;
  gap: clamp(1.35rem, 2.5vw, 2rem);
  max-width: 980px;
  padding-top: .35rem;
}

.about-block {
  padding-top: clamp(1.2rem, 2vw, 1.65rem);
  border-top: 1px solid rgba(76, 91, 71, .16);
}

.about-details h3 {
  max-width: 760px;
  margin: 0;
  color: var(--sage-dark);
  font-size: clamp(1.12rem, 1.45vw, 1.32rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.about-details .check-list {
  margin-top: .9rem;
  gap: .68rem;
  max-width: 840px;
}

.about-details a {
  color: var(--sage-dark);
  font-weight: 760;
  text-decoration: none;
}

.check-list {
  display: grid;
  gap: .75rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6rem;
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: var(--gold);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.3rem;
}
.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.65;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card,
.testimonial-card,
.quote-panel {
  padding: clamp(1.45rem, 2.2vw, 1.9rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, .68);
  border: 1px solid var(--line);
}
.service-card {
  min-height: 230px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(56, 48, 38, .10);
}
.service-card h3 {
  color: var(--sage-dark);
  max-width: 92%;
}
.service-card p {
  color: var(--muted);
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.58;
}

.support-section {
  padding-top: clamp(4rem, 8vw, 7rem);
}
.support-section .section-heading {
  max-width: 980px;
}
.support-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  margin: 0;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 250, 241, .36), transparent 28rem),
    linear-gradient(135deg, rgba(120, 134, 107, .32), rgba(76, 91, 71, .2));
}
.support-map li {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .62rem .95rem;
  border: 1px solid rgba(76, 91, 71, .16);
  border-radius: 999px;
  background: rgba(255, 253, 248, .74);
  color: var(--sage-dark);
  font-weight: 400;
  line-height: 1.25;
  box-shadow: 0 10px 28px rgba(56, 48, 38, .06);
}
.support-map li:nth-child(3n) {
  background: rgba(244, 237, 223, .72);
}
.support-map li:nth-child(4n) {
  color: var(--charcoal);
}
.support-map li:nth-child(5n) {
  border-color: rgba(200, 164, 93, .34);
}

.approach-section {
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: linear-gradient(135deg, rgba(76, 91, 71, .10), rgba(200, 164, 93, .13));
  border-block: 1px solid var(--line);
}
.approach-card {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.approach-heading {
  position: sticky;
  top: 6rem;
}
.approach-heading h2 {
  max-width: 650px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}
.approach-quote {
  position: relative;
  margin-top: 1.45rem;
  padding: clamp(1.55rem, 2.4vw, 2.15rem);
  border-radius: var(--radius-lg);
  background: var(--sage-dark);
  color: var(--cream-2);
  box-shadow: 0 18px 46px rgba(56, 48, 38, .12);
}
.approach-quote::before {
  content: "“";
  position: absolute;
  top: .45rem;
  left: 1rem;
  color: rgba(255, 250, 241, .24);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 800;
}
.approach-quote blockquote {
  position: relative;
  margin: 0;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: -0.018em;
}
.approach-copy {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border: 1px solid rgba(76, 91, 71, .14);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, .52);
}
.approach-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.72;
}

.testimonials-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.note { font-size: .92rem; opacity: .78; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.testimonial-card {
  position: relative;
  padding-top: 2.4rem;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: .5rem;
  left: 1.15rem;
  font-family: Manrope, sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(120, 134, 107, .28);
}
.testimonial-card p {
  color: var(--muted);
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.58;
}
.testimonial-card strong {
  color: var(--sage-dark);
  font-size: 1.08rem;
}

.contact-section { padding-bottom: 4rem; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 10px);
  background: rgba(255, 253, 248, .72);
  box-shadow: var(--shadow);
}
.cabinet-photo {
  margin: 0;
}
.contact-card .cabinet-photo img {
  width: 100%;
  height: auto;
  object-fit: initial;
  background: transparent;
}
.text-link {
  color: var(--sage-dark);
  font-weight: 750;
  text-underline-offset: .25em;
}
.contact-details {
  margin-top: 1.5rem;
  color: var(--muted);
}
.contact-details p { margin: .45rem 0; }
.external-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.external-links a {
  color: var(--sage-dark);
  font-weight: 750;
  text-decoration: none;
  transition: font-weight .18s ease, color .18s ease;
}
.external-links a:hover {
  color: var(--charcoal);
  font-weight: 850;
}

.map-wrap {
  margin-top: 1.2rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  min-height: 370px;
  background: var(--beige);
}
.map-wrap iframe {
  width: 100%;
  min-height: 370px;
  border: 0;
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 2rem clamp(1rem, 4vw, 3.5rem);
  background: var(--sage-dark);
  color: var(--cream-2);
}
.site-footer span { display: block; color: rgba(255,255,255,.72); }
.site-footer a { color: var(--cream-2); font-weight: 750; }
.footer-contact {
  display: grid;
  gap: .48rem;
  min-width: max-content;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
}
.footer-contact svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  opacity: .88;
}
.footer-contact span {
  color: var(--cream-2);
}
.footer-social {
  display: flex;
  gap: .65rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 42px;
  padding: .48rem .72rem;
  border: 1px solid rgba(255, 250, 241, .22);
  border-radius: 999px;
  background: rgba(255, 250, 241, .08);
  text-decoration: none;
}
.footer-social a:hover {
  background: rgba(255, 250, 241, .14);
}
.footer-social svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}
.footer-social span {
  color: var(--cream-2);
  font-size: .94rem;
}

.mobile-call { display: none; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero,
  .split-section,
  .split-section.reverse,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 2.5rem; }
  .hero-copy,
  .hero-media,
  .quick-info,
  .hero-points {
    grid-column: 1;
    grid-row: auto;
  }
  .quick-info {
    max-width: none;
  }
  .about-copy,
  .about-details { max-width: none; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .approach-card { grid-template-columns: 1fr; }
  .approach-heading { position: static; }
  .approach-copy { max-width: none; }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; padding-bottom: 76px; }
  .site-header { padding: .72rem 1rem; }
  .site-header > .btn { display: none; }
  .brand small { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .section-shell { width: min(100% - 1rem, 1160px); }
  h1 { font-size: clamp(1.9rem, 10vw, 2.9rem); }
  .eyebrow { font-size: .94rem; }
  .cards-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .support-map { justify-content: flex-start; padding: 1rem; }
  .support-map li { width: 100%; justify-content: flex-start; border-radius: 18px; }
  .quick-info div { grid-template-columns: 1fr; gap: .1rem; }
  .hero-media {
    padding-top: 0;
  }
  .hero-media img {
    width: 100%;
    height: auto;
    margin-top: 0;
    aspect-ratio: 1 / 1.05;
  }
  .hero-points {
    width: 100%;
    margin-left: 0;
  }

  .split-section,
  .about-section { padding: 3.5rem 0; }
  .about-card { padding: 1.1rem; }
  .about-copy h2 { font-size: clamp(1.85rem, 9vw, 2.75rem); }
  .about-block { padding-top: 1rem; }
  .about-details h3 { font-size: clamp(1.08rem, 5.8vw, 1.25rem); }
  .approach-section { padding: 3.5rem 0; }
  .approach-heading h2 { font-size: clamp(1.85rem, 9vw, 2.75rem); }
  .approach-copy { padding: 1rem; }
  .service-card { min-height: auto; }
  .contact-card { padding: .7rem; }
  .contact-card > div { padding: .8rem; }
  .site-footer { flex-direction: column; align-items: flex-start; padding-bottom: 2.2rem; }
  .footer-social,
  .footer-contact { width: 100%; min-width: 0; }
  .mobile-call {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    border-radius: 999px;
    background: var(--sage-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 850;
    box-shadow: 0 14px 40px rgba(37, 35, 31, .28);
  }
}
