@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --stone:        #E8E2D9;
  --stone-dark:   #DDD6CB;
  --stone-light:  #F2EEE8;
  --stone-xlight: #F8F5F0;
  --espresso:     #1C1208;
  --espresso-2:   #2E2010;
  --espresso-3:   #3D2B18;
  --copper:       #9B6A3A;
  --copper-mid:   #C48A52;
  --copper-pale:  #F5EDE2;
  --copper-dark:  #7A5229;
  --white:        #FFFFFF;
  --rule:         rgba(28,18,8,0.10);
  --rule-med:     rgba(28,18,8,0.16);
  --rule-dark:    rgba(28,18,8,0.22);
  --serif: 'Cormorant', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;
  --nav-h: 80px;
  --max:   1160px;
  --gap:   56px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--stone); color: var(--espresso); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gap); }
.section { padding: 100px 0; }
.section--stone      { background: var(--stone); }
.section--stone-dark { background: var(--stone-dark); }
.section--light      { background: var(--stone-light); }
.section--xlight     { background: var(--stone-xlight); }
.section--espresso   { background: var(--espresso); }
.section--white      { background: var(--white); }

.overline { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); display: block; margin-bottom: 16px; }
.overline--white { color: var(--copper-mid); }

.display { font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 600; line-height: 1.0; letter-spacing: -0.03em; color: var(--espresso); }
.display em { font-style: italic; font-weight: 400; color: var(--copper); }
.headline { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; color: var(--espresso); }
.headline em { font-style: italic; font-weight: 400; color: var(--copper); }
.headline--white { color: var(--stone); }
.headline--white em { color: var(--copper-mid); }
.subhead { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; font-style: italic; line-height: 1.6; color: var(--espresso-2); }
.body-lead { font-size: 1.15rem; font-weight: 400; line-height: 1.85; color: var(--espresso-2); }
.body-reg { font-size: 1.05rem; font-weight: 400; line-height: 1.85; color: var(--espresso-2); opacity: 0.88; }
.body-sm { font-size: 0.975rem; font-weight: 400; line-height: 1.8; color: var(--espresso-3); opacity: 0.85; }

.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000; background: var(--stone); border-bottom: 1px solid var(--rule-dark); display: flex; align-items: center; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-img { height: 48px; width: 48px; object-fit: cover; border-radius: 50%; border: 1.5px solid var(--rule-dark); flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.nav__logo-name { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--espresso); line-height: 1.2; }
.nav__logo-tag { font-family: var(--serif); font-style: italic; font-size: 0.76rem; color: var(--espresso); opacity: 0.65; line-height: 1.2; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: 0.84rem; font-weight: 600; color: var(--espresso); letter-spacing: 0.02em; transition: color 0.2s; white-space: nowrap; }
.nav__link:hover, .nav__link.active { color: var(--copper); }
.nav__cta { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; color: var(--stone); background: var(--espresso); padding: 0 24px; height: 44px; display: flex; align-items: center; transition: background 0.2s; white-space: nowrap; }
.nav__cta:hover { background: var(--copper); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--espresso); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--stone); padding: 28px var(--gap); border-bottom: 1px solid var(--rule-dark); gap: 20px; z-index: 999; }
.mobile-menu.open { display: flex; }
.mobile-menu .nav__link { font-size: 1rem; }
.mobile-menu .nav__cta { text-align: center; display: block; padding: 12px; }

.btn { display: inline-block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; padding: 13px 32px; transition: all 0.2s; cursor: pointer; border: none; font-family: var(--sans); }
.btn--espresso { background: var(--espresso); color: var(--stone); }
.btn--espresso:hover { background: var(--copper); }
.btn--copper { background: var(--copper); color: var(--stone); }
.btn--copper:hover { opacity: 0.88; }
.btn--stone { background: var(--stone); color: var(--espresso); }
.btn--stone:hover { background: var(--copper-pale); }
.btn-link { font-size: 0.82rem; font-weight: 500; color: var(--copper); border-bottom: 1px solid var(--copper); padding-bottom: 2px; transition: color 0.2s; display: inline-block; font-family: var(--sans); }
.btn-link:hover { color: var(--copper-dark); }

.copper-rule { width: 44px; height: 2px; background: var(--copper); margin: 20px 0; }

.page-hero { background: var(--espresso); padding: calc(var(--nav-h) + 72px) 0 72px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.page-hero__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper-mid); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.page-hero__label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--copper-mid); }
.page-hero__title { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 600; color: var(--stone); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 20px; }
.page-hero__title em { font-style: italic; font-weight: 400; color: var(--copper-mid); }
.page-hero__sub { font-size: 1rem; font-weight: 300; color: rgba(232,226,217,0.52); max-width: 540px; line-height: 1.8; }
.breadcrumb { font-size: 0.72rem; color: rgba(232,226,217,0.3); margin-bottom: 24px; }
.breadcrumb a { color: rgba(196,138,82,0.7); }

.stats-row { background: var(--espresso); display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-row__cell { padding: 36px 32px; border-right: 1px solid rgba(255,255,255,0.07); position: relative; overflow: hidden; }
.stats-row__cell:last-child { border-right: none; }
.stats-row__cell::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--copper-mid); transition: height 0.4s; }
.stats-row__cell:hover::before { height: 100%; }
.stats-row__num { font-family: var(--serif); font-size: 3rem; font-weight: 600; color: var(--stone); line-height: 1; margin-bottom: 8px; }
.stats-row__label { font-size: 0.72rem; font-weight: 400; color: rgba(232,226,217,0.45); letter-spacing: 0.06em; line-height: 1.5; }

.pull-quote { padding: 28px 32px; background: var(--copper-pale); border-left: 3px solid var(--copper); margin-top: 28px; }
.pull-quote p { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--espresso-3); line-height: 1.65; }

.pillar-table { border-top: 1px solid var(--rule-dark); margin-top: 52px; }
.pillar-row { display: grid; grid-template-columns: 64px 240px 1fr 1fr; gap: 0; border-bottom: 1px solid var(--rule-dark); transition: background 0.2s; }
.pillar-row:hover { background: var(--copper-pale); }
.pillar-row__num { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--espresso); opacity: 0.12; padding: 36px 0; line-height: 1; align-self: start; padding-top: 40px; }
.pillar-row__name { padding: 36px 24px 36px 0; border-right: 1px solid var(--rule); }
.pillar-row__title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--espresso); margin-bottom: 4px; }
.pillar-row__tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); }
.pillar-row__desc { padding: 36px 28px; font-size: 1rem; font-weight: 400; color: var(--espresso-2); line-height: 1.75; border-right: 1px solid var(--rule); }
.pillar-row__items { padding: 36px 0 36px 28px; display: flex; flex-direction: column; gap: 8px; }
.pillar-row__item { font-size: 0.92rem; font-weight: 400; color: var(--espresso-3); line-height: 1.5; padding-left: 14px; position: relative; opacity: 0.88; }
.pillar-row__item::before { content: '·'; position: absolute; left: 2px; color: var(--copper); font-size: 1rem; top: -1px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--rule-dark); margin-top: 56px; }
.process-step { padding: 44px 36px; border-right: 1px solid var(--rule-dark); position: relative; }
.process-step:last-child { border-right: none; }
.process-step__num { font-family: var(--serif); font-size: 4rem; font-weight: 700; color: var(--copper); opacity: 0.35; line-height: 1; margin-bottom: 24px; }
.process-step__title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--espresso); margin-bottom: 12px; }
.process-step__body { font-size: 0.975rem; font-weight: 400; color: var(--espresso-2); line-height: 1.75; opacity: 0.88; }
.process-step__arrow { position: absolute; right: -13px; top: 44px; color: var(--copper-mid); font-size: 1rem; background: var(--stone-light); padding: 2px 0; z-index: 1; }
.process-step:last-child .process-step__arrow { display: none; }

.founder-band { border-bottom: 1px solid var(--rule-dark); }
.founder-band__inner { display: grid; grid-template-columns: 360px 1fr; gap: 0; min-height: 360px; }
.founder-band__identity { padding: 60px 52px 60px 0; border-right: 1px solid var(--rule-dark); display: flex; flex-direction: column; justify-content: space-between; }
.founder-band__name { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; color: var(--espresso); line-height: 1.0; letter-spacing: -0.025em; margin-bottom: 12px; }
.founder-band__name em { font-style: italic; font-weight: 400; }
.founder-band__creds { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); margin-bottom: 6px; line-height: 1.6; }
.founder-band__role { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: var(--espresso-3); opacity: 0.6; margin-bottom: 18px; }
.founder-band__years { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); background: var(--espresso); padding: 5px 14px; margin-bottom: 28px; }
.founder-band__portrait { width: 100px; height: 130px; background: var(--stone-dark); border: 1px solid var(--rule); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.founder-band__portrait-icon { font-size: 2rem; opacity: 0.18; }
.founder-band__portrait-label { font-size: 0.54rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--copper); opacity: 0.55; }
.founder-band__bio { padding: 60px 0 60px 56px; }
.founder-band__bio-lead { font-family: var(--serif); font-style: italic; font-size: 1.2rem; font-weight: 400; color: var(--espresso-2); line-height: 1.6; margin-bottom: 24px; }
.founder-band__bio-p { font-size: 0.935rem; font-weight: 300; color: var(--espresso-2); line-height: 1.85; margin-bottom: 14px; opacity: 0.82; }
.founder-band__bio-list { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--rule); display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.founder-band__bio-item { font-size: 0.82rem; font-weight: 300; color: var(--espresso-3); line-height: 1.55; padding-left: 14px; position: relative; opacity: 0.8; }
.founder-band__bio-item::before { content: '·'; position: absolute; left: 2px; color: var(--copper); font-size: 1rem; top: -2px; }

.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--rule-dark); margin-top: 52px; }
.serve-card { padding: 36px 28px; border-right: 1px solid var(--rule-dark); transition: background 0.2s; position: relative; }
.serve-card:last-child { border-right: none; }
.serve-card:hover { background: var(--copper-pale); }
.serve-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--copper); transition: height 0.3s; }
.serve-card:hover::before { height: 100%; }
.serve-card__icon { font-size: 1.6rem; margin-bottom: 16px; }
.serve-card__title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--espresso); margin-bottom: 6px; }
.serve-card__spec { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); margin-bottom: 14px; }
.serve-card__body { font-size: 0.845rem; font-weight: 300; color: var(--espresso-3); line-height: 1.7; opacity: 0.82; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--rule-dark); margin-top: 52px; }
.why-cell { padding: 44px 36px; border-right: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); transition: background 0.25s; position: relative; }
.why-cell:nth-child(3n) { border-right: none; }
.why-cell:nth-child(4), .why-cell:nth-child(5), .why-cell:nth-child(6) { border-bottom: none; }
.why-cell:hover { background: var(--copper-pale); }
.why-cell__num { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--copper); opacity: 0.22; line-height: 1; margin-bottom: 14px; }
.why-cell__title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--espresso); margin-bottom: 10px; }
.why-cell__body { font-size: 0.875rem; font-weight: 300; color: var(--espresso-2); line-height: 1.75; opacity: 0.8; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.blog-card { background: var(--white); border: 1px solid var(--rule-dark); transition: transform 0.25s, box-shadow 0.25s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(28,18,8,0.1); }
.blog-card__band { height: 6px; background: var(--copper); }
.blog-card__body { padding: 28px; }
.blog-card__cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 10px; }
.blog-card__title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--espresso); line-height: 1.25; margin-bottom: 12px; }
.blog-card__excerpt { font-size: 0.85rem; font-weight: 300; color: var(--espresso-2); line-height: 1.7; opacity: 0.78; margin-bottom: 20px; }
.blog-card__meta { font-size: 0.72rem; color: var(--copper); border-top: 1px solid var(--rule); padding-top: 14px; opacity: 0.7; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-dark); margin-top: 52px; }
.testi-card { background: var(--stone-xlight); padding: 44px 36px; border: 2px dashed rgba(155,106,58,0.2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; min-height: 200px; }
.testi-card__mark { font-family: var(--serif); font-size: 3rem; color: var(--copper); opacity: 0.2; line-height: 1; }
.testi-card__text { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--espresso-3); opacity: 0.7; }
.testi-card__attr { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); opacity: 0.5; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--espresso-3); margin-bottom: 7px; opacity: 0.7; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--stone-xlight); border: 1px solid var(--rule-dark); padding: 12px 16px; font-family: var(--sans); font-size: 0.9rem; color: var(--espresso); outline: none; transition: border-color 0.2s; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(28,18,8,0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--copper); }
.form-select { cursor: pointer; }
.form-select option { background: var(--stone); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cta-band { background: var(--espresso); padding: 100px 0; }
.cta-band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-band__right { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 64px; }
.cta-band__sub { font-size: 0.95rem; font-weight: 300; color: rgba(232,226,217,0.52); line-height: 1.8; margin-bottom: 28px; }
.cta-band__contacts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.cta-band__contact { display: flex; align-items: center; gap: 14px; }
.cta-band__contact-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.cta-band__contact-text { font-size: 0.9rem; font-weight: 300; color: rgba(232,226,217,0.65); }

.footer { background: #100C06; padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer__logo-row img { height: 32px; width: 32px; object-fit: cover; border-radius: 50%; opacity: 0.8; }
.footer__brand { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,226,217,0.5); line-height: 1.4; }
.footer__tagline { font-family: var(--serif); font-style: italic; font-size: 0.82rem; color: rgba(155,106,58,0.45); margin: 6px 0 18px; }
.footer__addr { font-size: 0.78rem; color: rgba(232,226,217,0.22); line-height: 1.75; font-weight: 300; }
.footer__col-h { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(232,226,217,0.25); margin-bottom: 18px; }
.footer__link { display: block; font-size: 0.82rem; color: rgba(232,226,217,0.42); margin-bottom: 10px; font-weight: 300; transition: color 0.2s; }
.footer__link:hover { color: rgba(232,226,217,0.8); }
.footer__link--copper { color: rgba(155,106,58,0.55) !important; }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer__copy { font-size: 0.72rem; color: rgba(232,226,217,0.18); font-weight: 300; }
.footer__llpin { font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(155,106,58,0.3); text-transform: uppercase; }

.wa-float { position: fixed; bottom: 28px; right: 28px; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 9999; box-shadow: 0 4px 20px rgba(37,211,102,0.28); transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 27px; height: 27px; fill: white; }

@media (max-width: 1024px) {
  :root { --gap: 28px; }
  .pillar-row { grid-template-columns: 48px 1fr; }
  .pillar-row__desc, .pillar-row__items { display: none; }
  .pillar-row__name { border-right: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step__arrow { display: none; }
  .founder-band__inner { grid-template-columns: 1fr; }
  .founder-band__identity { border-right: none; border-bottom: 1px solid var(--rule-dark); padding: 40px 0; }
  .founder-band__bio { padding: 40px 0; }
  .founder-band__bio-list { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .serve-card:nth-child(2n) { border-right: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-cell:nth-child(3n) { border-right: 1px solid var(--rule-dark); }
  .why-cell:nth-child(2n) { border-right: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-band__right { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .serve-grid { grid-template-columns: 1fr; }
  .serve-card { border-right: none; border-bottom: 1px solid var(--rule-dark); }
  .why-grid { grid-template-columns: 1fr; }
  .why-cell { border-right: none !important; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}
