@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-variable.woff2") format("woff2");
  font-display: swap;
  font-weight: 200 800;
}

@font-face {
  font-family: "Editorial Display";
  src: url("/assets/display.woff2") format("woff2");
  font-display: swap;
}

:root {
  --color-brand-primary: #113b39;
  --color-brand-deep: #0c302f;
  --color-accent: #b76843;
  --color-surface: #f8f5ed;
  --color-paper: #fffdf8;
  --color-sage: #b9cbbd;
  --color-sand: #eae2d3;
  --color-text: #173b39;
  --color-muted: #5f716d;
  --color-border: #cfc7b8;
  --color-success: #2f6f55;
  --shadow-soft: 0 18px 50px rgba(17, 59, 57, 0.14);
  --radius-small: 3px;
  --radius-medium: 10px;
  --content: 1440px;
  --gutter: clamp(20px, 5vw, 78px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-paper);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
button, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--color-paper);
  color: var(--color-brand-primary);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

h1, h2, h3, .wordmark span, .hero-note strong, .contact-card strong {
  font-family: "Editorial Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 { font-size: clamp(4rem, 8.7vw, 8.3rem); }
h2 { font-size: clamp(3rem, 5.6vw, 5.5rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }

.eyebrow {
  margin: 0 0 26px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255, 255, 255, 0.85); }

.site-header {
  position: relative;
  z-index: 50;
  min-height: 106px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 18px var(--gutter);
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--color-border);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}
.wordmark span { font-size: 1.5rem; }
.wordmark i { color: var(--color-accent); }
.wordmark small {
  margin-top: 4px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.desktop-nav, .header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.78rem;
  font-weight: 600;
}
.desktop-nav a, .text-link { position: relative; }
.desktop-nav a::after, .text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after, .text-link:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-content: flex-end; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-outline { border-color: var(--color-brand-primary); }
.button-outline:hover { color: white; background: var(--color-brand-primary); }
.button-solid { color: white; background: var(--color-brand-primary); }
.button-solid:hover { background: var(--color-brand-deep); }
.button-quiet { border-color: rgba(17, 59, 57, 0.35); }
.button-quiet:hover { border-color: var(--color-brand-primary); }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-content: center;
  gap: 6px;
  padding: 0;
  border: 1px solid var(--color-border);
  background: transparent;
}
.menu-toggle span:not(.sr-only) { width: 20px; height: 1px; background: currentColor; }
.mobile-menu { display: none; }

.hero { max-width: var(--content); margin: 0 auto; padding: 38px var(--gutter) 0; }
.hero-image {
  position: relative;
  min-height: min(720px, 75vh);
  overflow: hidden;
  background:
    linear-gradient(rgba(9, 34, 33, 0.12), rgba(9, 34, 33, 0.44)),
    url("/assets/team.jpg") center 32% / cover no-repeat;
}
.hero-copy {
  position: absolute;
  right: 5.5vw;
  bottom: 220px;
  left: 5.5vw;
  color: white;
}
.hero-copy h1 { max-width: 1040px; margin: 0; text-wrap: balance; }
.hero-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(390px, 42%);
  padding: 28px 30px 25px;
  background: var(--color-sand);
}
.hero-note > span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-note strong { display: block; font-size: 1.85rem; }
.hero-note a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 17px;
  padding-top: 13px;
  border-top: 1px solid rgba(17, 59, 57, 0.22);
  font-size: 0.8rem;
  font-weight: 700;
}
.hero-note b { color: var(--color-accent); }

.introduction {
  max-width: var(--content);
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 80px;
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) calc(var(--gutter) * 1.25);
}
.introduction h2, .service-list h2, .knowledge h2, .contact-section h2 { margin: 0 0 32px; }
.introduction h2 i, .promise h2 i, .knowledge h2 i, .contact-section h2 i { color: var(--color-accent); }
.lead {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.14rem, 1.5vw, 1.38rem);
}
.arrow-link {
  display: inline-flex;
  gap: 28px;
  margin-top: 32px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
}
.arrow-link span { color: var(--color-accent); }

.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-sand);
}
.service-image {
  min-height: 860px;
  background: url("/assets/team.jpg") 23% center / cover no-repeat;
}
.service-list { padding: clamp(70px, 8vw, 120px) clamp(32px, 7vw, 100px); }
.service-list > h2 { max-width: 680px; }
.service-rows { margin-top: 50px; }
.service-row {
  display: grid;
  grid-template-columns: 46px 1fr 30px;
  align-items: start;
  gap: 16px;
  padding: 23px 0;
  border-top: 1px solid rgba(17, 59, 57, 0.22);
}
.service-row:last-child { border-bottom: 1px solid rgba(17, 59, 57, 0.22); }
.service-row > span { padding-top: 7px; color: var(--color-muted); font-size: 0.68rem; }
.service-row h3 { margin: 0 0 5px; }
.service-row p { max-width: 590px; margin: 0; color: var(--color-muted); font-size: 0.84rem; line-height: 1.55; }
.service-row > a {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  color: var(--color-accent);
  font-size: 1.2rem;
}

.promise {
  padding: clamp(90px, 10vw, 145px) var(--gutter);
  color: white;
  text-align: center;
  background: var(--color-brand-primary);
}
.promise h2 { max-width: 1040px; margin: 0 auto 30px; }
.promise h2 i { color: #d8a489; }
.promise > p:not(.eyebrow) { max-width: 680px; margin: 0 auto; color: #bfd0cb; }
.circle-link {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 42px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 160ms ease;
}
.circle-link:hover { background: rgba(255, 255, 255, 0.1); }

.knowledge {
  max-width: var(--content);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 130px);
  margin: 0 auto;
  padding: clamp(90px, 10vw, 145px) var(--gutter);
}
.knowledge-heading { align-self: start; }
.knowledge-heading > p:not(.eyebrow) { max-width: 520px; color: var(--color-muted); }
.knowledge-heading .button { margin-top: 22px; }
.faq-list { border-top: 1px solid var(--color-border); }
.faq-list details { border-bottom: 1px solid var(--color-border); }
.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Editorial Display", Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--color-accent); font-family: "Manrope", sans-serif; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 0 24px; color: var(--color-muted); }

.contact-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 650px;
  background: var(--color-sage);
}
.contact-copy { padding: clamp(80px, 9vw, 135px) var(--gutter); }
.contact-copy > p:not(.eyebrow):not(.privacy-note) { max-width: 660px; font-size: 1.05rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.privacy-note { max-width: 700px; margin-top: 28px; font-size: 0.72rem; color: #435c57; }
.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(55px, 7vw, 105px);
  color: white;
  background: var(--color-brand-deep);
  font-style: normal;
}
.contact-card > span {
  margin-bottom: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-card strong { max-width: 520px; margin-bottom: 30px; font-size: clamp(2.4rem, 4vw, 4rem); }
.contact-card a { width: max-content; margin: 4px 0; color: #d7e2df; }
.contact-card .map-link { margin-top: 24px; padding-bottom: 5px; border-bottom: 1px solid rgba(255, 255, 255, 0.4); color: white; }

footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.72fr);
  gap: 50px;
  padding: 80px var(--gutter) 32px;
  background: var(--color-surface);
}
footer > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-mark { align-items: flex-start; justify-self: start; }
footer > div:first-child > p { max-width: 340px; color: var(--color-muted); font-size: 0.78rem; }
footer strong { margin-bottom: 12px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
footer a, footer p { margin: 4px 0; color: var(--color-muted); font-size: 0.76rem; }
.footer-legal { grid-column: 1 / -1; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--color-border); }

.chat-launcher {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 10px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--color-brand-primary);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-weight: 700;
}
.chat-spark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-brand-primary);
  background: #d8a489;
}

.chat-panel {
  position: fixed;
  z-index: 101;
  right: 22px;
  bottom: 22px;
  width: min(410px, calc(100vw - 32px));
  max-height: min(690px, calc(100vh - 44px));
  overflow: hidden;
  border: 1px solid rgba(17, 59, 57, 0.16);
  border-radius: var(--radius-medium);
  background: var(--color-paper);
  box-shadow: 0 24px 70px rgba(17, 59, 57, 0.24);
}
.chat-panel > header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  color: white;
  background: var(--color-brand-primary);
}
.chat-panel > header > div { display: flex; align-items: center; gap: 11px; }
.chat-panel header strong, .chat-panel header small { display: block; }
.chat-panel header strong { font-size: 0.92rem; }
.chat-panel header small { color: #bfd0cb; font-size: 0.66rem; }
.assistant-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-brand-primary);
  background: #d8a489;
  font-family: "Editorial Display", Georgia, serif;
  font-weight: 700;
}
.assistant-avatar span { color: white; }
.chat-close {
  width: 44px;
  height: 44px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 1.8rem;
}
.chat-messages {
  height: min(430px, calc(100vh - 270px));
  overflow-y: auto;
  padding: 18px;
  background: #f5f1e8;
}
.message {
  max-width: 88%;
  margin-bottom: 12px;
  padding: 11px 13px;
  border-radius: 3px 12px 12px;
  background: white;
  box-shadow: 0 4px 16px rgba(17, 59, 57, 0.06);
}
.message.user {
  margin-left: auto;
  border-radius: 12px 3px 12px 12px;
  color: white;
  background: var(--color-brand-primary);
}
.message p { margin: 0; font-size: 0.82rem; line-height: 1.55; }
.message small { display: block; margin-top: 8px; color: var(--color-muted); font-size: 0.62rem; }
.message a { display: block; margin-top: 8px; color: var(--color-accent); font-size: 0.72rem; font-weight: 700; }
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.chat-suggestions button {
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-paper);
  cursor: pointer;
  font-size: 0.68rem;
}
.chat-form { display: grid; grid-template-columns: 1fr 46px; gap: 8px; padding: 12px; border-top: 1px solid var(--color-border); }
.chat-form textarea {
  min-height: 46px;
  max-height: 110px;
  resize: none;
  padding: 11px 12px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background: white;
  font-size: 0.82rem;
}
.chat-form button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 5px;
  color: white;
  background: var(--color-accent);
  cursor: pointer;
  font-size: 1.2rem;
}
.chat-form button:disabled { opacity: 0.45; cursor: wait; }
.chat-disclaimer { margin: 0; padding: 0 14px 12px; color: var(--color-muted); font-size: 0.6rem; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .wordmark { justify-self: start; align-items: flex-start; }
  .menu-toggle { display: grid; }
  .desktop-only { display: none; }
  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 22px;
    padding: 30px var(--gutter);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-paper);
    box-shadow: var(--shadow-soft);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 28px; }
  .mobile-menu nav a { min-height: 44px; display: flex; align-items: center; border-bottom: 1px solid var(--color-border); }
  .mobile-menu .button { width: max-content; }
  .wordmark { min-width: 44px; min-height: 44px; justify-content: center; }
  .hero-note a, .arrow-link, .contact-card a, footer a {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .hero-note { width: 44%; }
  .service-section { grid-template-columns: 0.8fr 1.2fr; }
  .service-image { min-height: 900px; }
  .knowledge { grid-template-columns: 0.9fr 1.1fr; }
  footer { grid-template-columns: 1.4fr repeat(2, 1fr); }
  footer > div:nth-child(4) { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }
  h1 { font-size: clamp(3.7rem, 17vw, 5.7rem); }
  h2 { font-size: clamp(2.9rem, 13vw, 4.5rem); }
  .site-header { min-height: 88px; padding-top: 13px; padding-bottom: 13px; }
  .wordmark span { font-size: 1.22rem; }
  .wordmark small { font-size: 0.49rem; }
  .mobile-menu { height: calc(100vh - 88px); align-content: start; }
  .mobile-menu nav { grid-template-columns: 1fr; }
  .mobile-menu nav a { font-family: "Editorial Display", Georgia, serif; font-size: 1.5rem; }
  .hero { padding-top: 15px; }
  .hero-image { min-height: 660px; background-position: 52% center; }
  .hero-copy { right: 18px; bottom: 180px; left: 18px; }
  .hero-copy .eyebrow { margin-bottom: 14px; }
  .hero-note { width: calc(100% - 24px); padding: 22px; }
  .hero-note strong { font-size: 1.5rem; }
  .introduction, .knowledge, .contact-section, .service-section { grid-template-columns: 1fr; }
  .introduction { gap: 38px; padding: 90px var(--gutter); }
  .introduction .eyebrow { margin-bottom: 0; }
  .service-image { min-height: 500px; background-position: 35% center; }
  .service-list { padding: 75px var(--gutter); }
  .service-list h2 { margin-bottom: 20px; }
  .service-rows { margin-top: 34px; }
  .service-row { grid-template-columns: 34px 1fr 26px; gap: 8px; }
  .service-row p { font-size: 0.78rem; }
  .promise { text-align: left; }
  .promise .circle-link { margin-left: 0; }
  .knowledge { gap: 60px; padding: 90px var(--gutter); }
  .faq-list summary { font-size: 1.35rem; }
  .contact-card { min-height: 430px; padding: 60px var(--gutter); }
  footer { grid-template-columns: 1fr 1fr; gap: 42px 24px; padding: 65px var(--gutter) 30px; }
  footer > div:first-child, footer > div:nth-child(4), .footer-legal { grid-column: 1 / -1; }
  .chat-launcher { right: 14px; bottom: 14px; }
  .chat-panel { right: 8px; bottom: 8px; width: calc(100vw - 16px); max-height: calc(100vh - 16px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
