/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/inter-normal-300.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/inter-normal-400.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/inter-normal-600.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/inter-normal-800.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/inter-tight-normal-400.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/inter-tight-normal-700.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* { box-sizing: border-box; }
:root {
  --ink: #171717;
  --muted: #5d5751;
  --paper: #fffdf9;
  --soft: #f4efe8;
  --line: #ddd4ca;
  --bean: #6f4a31;
  --leaf: #68745b;
  --river: #315c63;
  --sun: #d3a64b;
  --shadow: 0 20px 50px rgba(23, 23, 23, .08);
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.5 Inter, "Odoo Unicode Support Noto", sans-serif;
}
a { color: inherit; }
body :where(h1, h2, h3, h4, p, li, a) { overflow-wrap: anywhere; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: .6rem 1rem;
}
.skip-link:focus { top: 1rem; }
.dev-banner {
  background: var(--river);
  color: white;
  text-align: center;
  padding: .7rem 1rem;
  font: 700 .875rem/1.4 Inter, "Odoo Unicode Support Noto", sans-serif;
  overflow-wrap: anywhere;
}
.dev-banner a { color: white; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 253, 249, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  min-width: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font: 700 1.05rem Inter, "Odoo Unicode Support Noto", sans-serif;
  letter-spacing: 0;
  min-width: 0;
}
.brand span { min-width: 0; overflow-wrap: anywhere; }
.brand img { border-radius: 4px; object-fit: contain; }
.site-nav {
  display: flex;
  justify-content: center;
  gap: .85rem;
  flex-wrap: wrap;
  font: 600 14px/1.2 Inter, "Odoo Unicode Support Noto", sans-serif;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: .45rem .2rem;
  border-bottom: 2px solid transparent;
}
.site-nav a.active,
.site-nav a:hover { color: var(--ink); border-color: var(--bean); }
.header-actions { display: flex; gap: .5rem; }
.menu-toggle { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .7rem 1.05rem;
  border: 1px solid var(--ink);
  border-radius: 4px;
  text-decoration: none;
  font: 600 14px/1.2 Inter, "Odoo Unicode Support Noto", sans-serif;
  letter-spacing: 0;
  background: transparent;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.btn.primary { background: var(--ink); color: white; }
.btn.secondary { background: var(--soft); color: var(--ink); border-color: var(--line); }
.btn.ghost { border-color: var(--line); color: var(--ink); }
.btn.small { min-height: 36px; padding: .55rem .8rem; }
.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 84% 20%, rgba(211, 166, 75, .22), transparent 24rem),
    linear-gradient(180deg, white 0%, var(--paper) 100%);
}
.hero-copy { min-width: 0; }
.hero h1,
#normal-site .hero h2 {
  margin: 0 0 1rem;
  max-width: 760px;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-family: "Inter Tight", "Odoo Unicode Support Noto", sans-serif;
  font-weight: 700;
}
.hero p { max-width: 740px; font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--muted); }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.eyebrow {
  margin: 0 0 .6rem;
  color: var(--river);
  text-transform: uppercase;
  font: 800 12px/1.2 Inter, "Odoo Unicode Support Noto", sans-serif;
  letter-spacing: .08em;
}
.hero-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  min-height: 360px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.hero-panel p { position: relative; font-size: 1.05rem; color: var(--ink); }
.panel-kicker { font: 800 13px Inter, "Odoo Unicode Support Noto", sans-serif; color: var(--river); text-transform: uppercase; }
.shape {
  position: absolute;
  border-radius: 48% 52% 61% 39% / 39% 48% 52% 61%;
  opacity: .9;
}
.shape.one { width: 220px; height: 220px; right: -55px; top: -55px; background: var(--sun); }
.shape.two { width: 190px; height: 190px; left: -60px; bottom: -50px; background: rgba(104, 116, 91, .28); }
.section {
  min-width: 0;
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}
.section.narrow { max-width: 980px; margin: 0 auto; }
.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: 0;
  font-family: "Inter Tight", "Odoo Unicode Support Noto", sans-serif;
  font-weight: 700;
}
.section h3 {
  margin: 2rem 0 .65rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
  font-family: "Inter Tight", "Odoo Unicode Support Noto", sans-serif;
  font-weight: 700;
}
.section p, .section li { color: var(--muted); font-weight: 300; }
.lead { font-size: 1.25rem; color: var(--ink) !important; }
ul {
  display: grid;
  gap: .45rem;
  padding-left: 1.25rem;
}
blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 5px solid var(--river);
  background: white;
  box-shadow: var(--shadow);
}
.holding {
  min-height: 36vh;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  margin-block: 3rem;
  box-shadow: var(--shadow);
}
.cta-band {
  background: var(--ink);
  color: white;
  text-align: center;
}
.cta-band p { max-width: 760px; margin-inline: auto; color: #ede7df; }
.cta-band .eyebrow { color: var(--sun); }
.cta-band .btn { background: white; color: var(--ink); border-color: white; }
.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 1.2fr;
  gap: 2rem;
  padding: 3rem clamp(1rem, 5vw, 5rem);
  background: #0f0f0f;
  color: white;
}
.site-footer h2 { margin-top: 0; }
.site-footer p { color: #ddd4ca; }
.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem 1.25rem;
}
.site-footer a { color: white; text-decoration: none; }
.small { font: 13px/1.5 Inter, "Odoo Unicode Support Noto", sans-serif; color: var(--muted); }
@media (max-width: 980px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto; }
  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    min-height: 38px;
    padding: .55rem .8rem;
    border: 1px solid var(--line);
    background: var(--soft);
    border-radius: 4px;
    font: 600 14px Inter, "Odoo Unicode Support Noto", sans-serif;
  }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    padding-top: .75rem;
  }
  .site-nav.open { display: flex; }
  .header-actions { grid-column: 1 / -1; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .site-header { gap: .5rem; padding: .75rem; }
  .hero { padding-top: 2.5rem; }
  .hero h1,
  #normal-site .hero h2 { font-size: clamp(2.35rem, 13vw, 3.8rem); }
  .header-actions { display: none; }
  .hero-actions > .btn { flex: 1 1 100%; }
  .hero-panel { min-height: 280px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { grid-template-columns: 1fr; }
}
