:root {
  --ink: #173447;
  --ink-soft: #536a76;
  --forest: #123e55;
  --forest-deep: #0b2d3d;
  --green: #176b87;
  --green-bright: #2d8fae;
  --mint: #dceef4;
  --mint-light: #eff7fa;
  --sand: #f5f0e8;
  --cream: #fcfaf6;
  --white: #ffffff;
  --line: #d6e3e8;
  --danger: #a53f3f;
  --success: #256a52;
  --shadow: 0 20px 60px rgba(18, 62, 85, .12);
  --shadow-small: 0 10px 30px rgba(18, 62, 85, .09);
  --radius: 22px;
  --radius-small: 12px;
  --container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select { font-family: inherit; }

img { display: block; max-width: 100%; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--forest); }
button, input, textarea, select { font-size: 1rem; }
[hidden] { display: none !important; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  color: var(--forest-deep);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 { font-size: clamp(2.65rem, 6vw, 5.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.35rem; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container.narrow { max-width: 820px; }
.section { padding: clamp(76px, 10vw, 130px) 0; }
.section-tint { background: var(--mint-light); }
.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: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(251, 250, 246, .9);
  border-bottom: 1px solid rgba(18, 63, 54, .08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  text-decoration: none;
}

.brand:hover { color: var(--forest); }

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50% 50% 50% 15%;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1rem; letter-spacing: -.01em; }
.brand-copy small {
  margin-top: 4px;
  color: var(--green);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 650;
  text-decoration: none;
}
.nav-link:hover { color: var(--green); }

.menu-toggle {
  width: 46px;
  height: 44px;
  display: none;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.menu-toggle > span:not(.sr-only) {
  width: 22px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--forest);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: var(--white);
  background: var(--green);
  border: 2px solid var(--green);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(13, 122, 101, .2);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 11px 26px rgba(12, 55, 47, .24);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: 3px solid #d9a441;
  outline-offset: 3px;
}

.button-small { min-height: 40px; padding: 9px 17px; font-size: .9rem; }
.button-large { min-height: 54px; padding: 15px 26px; }
.button-full { width: 100%; }
.button-ghost {
  color: var(--forest);
  background: transparent;
  border-color: rgba(18, 63, 54, .3);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 0 clamp(90px, 10vw, 140px);
  background:
    radial-gradient(circle at 92% 20%, rgba(32, 161, 132, .12), transparent 30%),
    linear-gradient(135deg, var(--cream), #f7f5ef);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -180px -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(13, 122, 101, .12);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-light { color: #9ad8e8; }
.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(32, 161, 132, .13);
}

.hero h1 { margin-bottom: 30px; }
.hero h1 em {
  color: var(--green);
  font-style: normal;
}
.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 650;
}
.trust-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.hero-visual { position: relative; padding: 18px; }
.portrait-frame {
  position: relative;
  z-index: 2;
  overflow: visible;
  border-radius: 48% 48% 24px 24px;
  box-shadow: var(--shadow);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  z-index: -1;
  background: var(--mint);
  border-radius: inherit;
}
.portrait-frame img {
  width: 100%;
  max-height: 570px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: inherit;
}
.portrait-card {
  position: absolute;
  right: -35px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 245px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(18, 63, 54, .1);
  border-radius: 14px;
  box-shadow: var(--shadow-small);
}
.portrait-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}
.portrait-card span:last-child { display: grid; }
.portrait-card strong { font-size: .92rem; }
.portrait-card small { color: var(--ink-soft); font-size: .76rem; }

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(13, 122, 101, .18);
  border-radius: 50%;
}
.hero-orbit-one { width: 92%; height: 92%; inset: 4%; }
.hero-orbit-two { width: 112%; height: 112%; inset: -6%; }

.confidence-strip { color: var(--white); background: var(--forest); }
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.confidence-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  padding: 28px clamp(20px, 4vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, .13);
}
.confidence-grid > div:first-child { padding-left: 0; }
.confidence-grid > div:last-child { border: 0; }
.confidence-grid span {
  grid-row: 1 / 3;
  color: #7dc9de;
  font-size: .75rem;
  font-weight: 800;
}
.confidence-grid strong { font-size: .96rem; }
.confidence-grid small { color: #c4dce4; font-size: .78rem; }

.section-heading { max-width: 780px; margin-bottom: 55px; }
.section-heading h2,
.split-heading h2 { margin-bottom: 22px; }
.section-heading p,
.split-heading p { color: var(--ink-soft); font-size: 1.07rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  padding: clamp(28px, 5vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(18, 63, 54, .03);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { box-shadow: var(--shadow-small); transform: translateY(-4px); }
.service-card.featured { background: var(--forest); border-color: var(--forest); }
.service-card.featured h3,
.service-card.featured p,
.service-card.featured li { color: var(--white); }
.service-card.featured p,
.service-card.featured li { color: #cadde4; }
.service-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #a9c4cf;
  font-size: .78rem;
  font-weight: 800;
}
.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--green);
  background: var(--mint-light);
  border-radius: 14px;
  font-size: 1.25rem;
  font-weight: 900;
}
.featured .service-icon { color: #93d8e9; background: rgba(255, 255, 255, .1); }
.service-card h3 { margin-bottom: 14px; font-size: 1.55rem; }
.service-card p { color: var(--ink-soft); }
.service-card ul { margin: 24px 0 0; padding: 0; list-style: none; }
.service-card li { margin: 9px 0; color: var(--ink-soft); font-size: .91rem; }
.service-card li::before { content: "✓"; margin-right: 10px; color: var(--green-bright); font-weight: 900; }

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 55px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 30px;
  border-top: 2px solid var(--green);
  border-right: 1px solid var(--line);
}
.process-grid li:last-child { border-right: 0; }
.process-grid li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 900;
}
.process-grid h3 { margin: 3px 0 10px; }
.process-grid p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.concepts { background: var(--sand); }
.concept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.concept-card {
  position: relative;
  overflow: hidden;
  padding: 12px 12px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}
.concept-label {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(9, 44, 38, .78);
  border-radius: 99px;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.concept-preview {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
  border-radius: 15px;
}
.concept-preview strong { color: var(--white); font-size: 2.25rem; line-height: .98; letter-spacing: -.05em; }
.concept-preview span { margin-top: 24px; color: rgba(255, 255, 255, .76); font-size: .72rem; word-spacing: 8px; }
.concept-trade .concept-preview { background: linear-gradient(145deg, #142c29, #315b50); }
.concept-beauty .concept-preview { background: linear-gradient(145deg, #875f64, #d2a7a1); }
.concept-food .concept-preview { background: linear-gradient(145deg, #713c23, #c4844a); }
.concept-card h3 { margin: 26px 18px 9px; }
.concept-card > p { margin: 0 18px; color: var(--ink-soft); font-size: .9rem; }

.personal-section { background: var(--white); }
.personal-grid {
  display: grid;
  grid-template-columns: .78fr 1.1fr;
  align-items: center;
  gap: clamp(45px, 9vw, 110px);
}
.personal-image {
  position: relative;
  padding: 18px 0 0 18px;
}
.personal-image::before {
  content: "";
  position: absolute;
  inset: 0 18px 18px 0;
  background: var(--mint);
  border-radius: 22px;
}
.personal-image img {
  position: relative;
  width: 100%;
  max-height: 570px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.personal-copy .lead { color: var(--forest); font-size: 1.25rem; font-weight: 700; }
.personal-copy > p:not(.lead) { color: var(--ink-soft); }
.local-note {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding: 20px;
  background: var(--mint-light);
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
}
.local-note > span { color: var(--green); font-size: 1.6rem; }
.local-note p { margin: 3px 0 0; color: var(--ink-soft); font-size: .9rem; }

.contact-section { color: var(--white); background: var(--forest); }
.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.2fr;
  align-items: start;
  gap: clamp(45px, 8vw, 95px);
}
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p { color: #c5dce4; font-size: 1.07rem; }
.contact-direct {
  display: grid;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.contact-direct span { color: #aac7d1; font-size: .8rem; }
.contact-direct a { color: var(--white); font-weight: 750; }
.contact-panel {
  padding: clamp(25px, 5vw, 45px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
}

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: .83rem;
  font-weight: 750;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid #cfdde2;
  border-radius: 9px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 122, 101, .12);
  outline: none;
}
.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  margin: 8px 0 22px;
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.45;
}
.checkbox-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.form-note { margin: 12px 0 0; color: var(--ink-soft); font-size: .73rem; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-errors {
  margin-bottom: 20px;
  padding: 14px 16px;
  color: #792f2f;
  background: #fff0f0;
  border: 1px solid #efc0c0;
  border-radius: 9px;
  font-size: .85rem;
}
.form-errors ul { margin: 8px 0 0; padding-left: 20px; }

.page-hero {
  padding: 90px 0;
  background: var(--mint-light);
}
.page-hero.compact h1 { margin-bottom: 14px; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { color: var(--ink-soft); font-size: 1.12rem; }
.form-page {
  max-width: 850px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}
.legal-page h2 { margin: 45px 0 13px; font-size: 1.45rem; letter-spacing: -.02em; }
.legal-page h2:first-child { margin-top: 0; }
.legal-page p { color: var(--ink-soft); }
.legal-note {
  margin-top: 55px;
  padding: 20px;
  background: #fff8e6;
  border-left: 4px solid #d59b2a;
  border-radius: 0 10px 10px 0;
}
.legal-note p { margin: 5px 0 0; font-size: .9rem; }

.success-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 70px 20px;
  background: var(--mint-light);
}
.success-card {
  max-width: 650px;
  padding: clamp(35px, 7vw, 70px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.success-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 1.6rem;
}
.success-card h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.success-card p { margin-bottom: 30px; color: var(--ink-soft); }

.flash-wrap { position: relative; z-index: 60; }
.flash {
  margin: 15px 0 0;
  padding: 12px 16px;
  border-radius: 9px;
  font-size: .9rem;
}
.flash-success { color: var(--success); background: #e7f6f0; border: 1px solid #b9dfd1; }
.flash-error { color: var(--danger); background: #fff0f0; border: 1px solid #efc0c0; }

.site-footer { padding: 65px 0 25px; color: #c2d7df; background: var(--forest-deep); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .7fr; gap: 60px; }
.brand-footer { margin-bottom: 18px; color: var(--white); }
.brand-footer .brand-mark { background: var(--green); }
.footer-grid p { max-width: 370px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid strong { color: var(--white); }
.footer-grid a { color: #c2d7df; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .75rem;
}

.privacy-notice {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin: auto;
  padding: 20px 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(5, 35, 29, .22);
}
.privacy-notice p { margin: 3px 0 0; color: var(--ink-soft); font-size: .79rem; line-height: 1.45; }
.privacy-actions { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }
.text-link { font-size: .84rem; font-weight: 700; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px 20px 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-small);
  }
  .main-nav.is-open { display: flex; }
  .main-nav .nav-link { padding: 10px 4px; }
  .hero-grid,
  .personal-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 3; }
  .hero-visual { max-width: 560px; margin-inline: auto; }
  .portrait-card { right: -10px; }
  .confidence-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .confidence-grid > div,
  .confidence-grid > div:first-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }
  .confidence-grid > div:last-child { border-bottom: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .process-grid,
  .concept-grid { grid-template-columns: 1fr; }
  .process-grid li { border-right: 0; }
  .concept-grid { max-width: 590px; margin-inline: auto; }
  .contact-copy { position: static; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .hero { padding-top: 58px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-list { display: grid; }
  .portrait-card { position: relative; right: auto; bottom: auto; margin: -25px 15px 0; }
  .service-grid,
  .contact-form .form-row { grid-template-columns: 1fr; }
  .service-card { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
  .privacy-notice { align-items: stretch; flex-direction: column; gap: 15px; }
  .privacy-actions { justify-content: space-between; }
  .form-page { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
