:root {
  --eo-bg: #f2ece4;
  --eo-bg-alt: #ece3d6;
  --eo-text: #2c2218;
  --eo-text-soft: #6a5a4a;
  --eo-text-muted: #7a6a5a;
  --eo-clay: #7a5c38;
  --eo-clay-light: #c4a882;
  --eo-blob-green-1: #c9ddb0;
  --eo-blob-green-2: #b5c898;
  --eo-blob-terracotta: #d4a97a;
  --eo-dot-olive: #5c7a2e;
  --eo-dot-sage: #4a8a6a;
  --eo-dot-teal: #3a7a8a;
  --eo-dot-ochre: #8a6a3a;
  --eo-dot-plum: #6a3a5a;
  --eo-dot-clay: #7a5c38;
  --eo-card-bg: #fff;
  --eo-card-shadow: rgba(44,34,24,.06);
  --eo-card-shadow-hover: rgba(44,34,24,.12);
  --eo-footer-bg: #2c2218;
  --eo-footer-text: #8a7a6a;
  --eo-font-serif: 'Libre Baskerville', serif;
  --eo-font-sans: 'Outfit', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--eo-bg);
  font-family: var(--eo-font-serif);
  color: var(--eo-text);
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 56px; }
:focus-visible { outline: 2px solid var(--eo-clay); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 56px;
  background: rgba(242,236,228,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44,34,24,.06);
}
.logo { font-size: 17px; font-weight: 700; letter-spacing: .04em; text-decoration: none; }
.logo em { font-style: italic; color: var(--eo-clay); font-weight: 400; }
.nav ul { display: flex; gap: 34px; list-style: none; }
.nav a.nav-link {
  color: var(--eo-text-muted); font-size: 13px; text-decoration: none;
  font-family: var(--eo-font-sans); font-weight: 500;
  transition: color .2s;
}
.nav a.nav-link:hover { color: var(--eo-text); }
.nav a.nav-link.active { color: var(--eo-text); border-bottom: 2px solid var(--eo-clay); padding-bottom: 3px; }

/* ── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb {
  padding: 18px 56px 0; font-family: var(--eo-font-sans); font-size: 12.5px; color: var(--eo-text-muted);
}
.breadcrumb a { text-decoration: none; color: var(--eo-clay); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: center;
  padding: 60px 56px 80px;
  overflow: hidden;
}
.hero.hero-small { min-height: 38vh; padding: 70px 56px; }
.blob { position: absolute; right: -90px; top: -70px; width: 650px; height: 620px;
  background: radial-gradient(ellipse at 40% 50%, var(--eo-blob-green-1) 0%, var(--eo-blob-green-2) 40%, transparent 70%);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  opacity: .6;
  animation: breathe 9s cubic-bezier(.45,.05,.55,.95) infinite, drift 22s cubic-bezier(.45,.05,.55,.95) infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .55; }
  35% { transform: scale(1.05); opacity: .65; }
  65% { transform: scale(1.08); opacity: .72; }
}
@keyframes drift {
  0%, 100% { margin: 0 0 0 0; }
  25% { margin: 15px -10px 0 0; }
  50% { margin: 25px -20px 0 0; }
  75% { margin: -10px 10px 0 0; }
}
.blob-b { position: absolute; left: 28%; bottom: -110px; width: 400px; height: 400px;
  background: radial-gradient(ellipse, var(--eo-blob-terracotta) 0%, transparent 70%);
  border-radius: 50%; opacity: .32;
  animation: breatheB 11s cubic-bezier(.4,.1,.6,.9) infinite, driftB 26s cubic-bezier(.4,.1,.6,.9) infinite;
}
@keyframes breatheB {
  0%, 100% { transform: scale(1); opacity: .3; }
  40% { transform: scale(1.06); opacity: .4; }
  70% { transform: scale(1.12); opacity: .48; }
}
@keyframes driftB {
  0%, 100% { margin: 0 0 0 0; }
  30% { margin: -18px 0 0 22px; }
  60% { margin: -30px 0 0 12px; }
}
.hero-content { max-width: 660px; position: relative; }
.eyebrow {
  font-size: 12px; letter-spacing: .3em; color: var(--eo-clay);
  text-transform: uppercase; margin-bottom: 24px;
  font-family: var(--eo-font-sans); font-weight: 500;
}
h1.title {
  font-size: clamp(40px, 5.6vw, 76px); font-weight: 700;
  line-height: 1.08; letter-spacing: -.02em;
}
h1.title.title-small { font-size: clamp(32px, 4.4vw, 56px); }
h1.title em { font-style: italic; font-weight: 400; color: var(--eo-clay); }
.hero-desc {
  margin-top: 28px; font-size: 17px; color: var(--eo-text-soft); line-height: 1.75;
  max-width: 520px; font-family: var(--eo-font-sans); font-weight: 300;
}
.cta-row { margin-top: 42px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn-fill, .btn-out {
  padding: 15px 34px; font-family: var(--eo-font-sans); font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; cursor: pointer; text-decoration: none;
  display: inline-block; font-weight: 500;
}
.btn-fill { background: var(--eo-text); color: var(--eo-bg); border: 1px solid var(--eo-text); transition: background .2s, border-color .2s; }
.btn-fill:hover { background: var(--eo-clay); border-color: var(--eo-clay); }
.btn-out { background: transparent; color: var(--eo-clay); border: 1px solid var(--eo-clay-light); transition: all .2s; }
.btn-out:hover { border-color: var(--eo-clay); color: var(--eo-text); }

/* ── SECTION SHELL ───────────────────────────────────── */
.section { padding: 84px 56px; }
.section-alt { background: var(--eo-bg-alt); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 12px; letter-spacing: .3em; color: var(--eo-clay);
  text-transform: uppercase; margin-bottom: 16px;
  font-family: var(--eo-font-sans); font-weight: 500;
}
h2.section-title {
  font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; line-height: 1.15; letter-spacing: -.01em;
}
h2.section-title em { font-style: italic; font-weight: 400; color: var(--eo-clay); }
.section-sub {
  margin-top: 18px; font-size: 16px; color: var(--eo-text-soft); line-height: 1.75;
  font-family: var(--eo-font-sans); font-weight: 300;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text { font-size: 16px; color: var(--eo-text-soft); line-height: 1.85; font-family: var(--eo-font-sans); font-weight: 300; }
.about-text p + p { margin-top: 18px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.stat { background: var(--eo-card-bg); padding: 28px 26px; box-shadow: 0 2px 20px var(--eo-card-shadow); }
.stat-num { font-size: 40px; font-weight: 700; color: var(--eo-clay); font-family: var(--eo-font-serif); }
.stat-label { margin-top: 6px; font-size: 12px; color: var(--eo-text-muted); font-family: var(--eo-font-sans); letter-spacing: .04em; }

/* ── SERVICES CARDS ──────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--eo-card-bg); padding: 36px 30px; border-radius: 2px;
  box-shadow: 0 2px 20px var(--eo-card-shadow);
  transition: transform .2s, box-shadow .2s;
  display: block; text-decoration: none; color: inherit;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px var(--eo-card-shadow-hover); }
.svc-dot { width: 10px; height: 10px; border-radius: 50%; margin-bottom: 20px; }
.svc-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.svc-txt { font-size: 13px; color: var(--eo-text-muted); line-height: 1.65; font-family: var(--eo-font-sans); }
.svc-link {
  display: inline-block; margin-top: 16px; font-size: 12px; font-family: var(--eo-font-sans);
  color: var(--eo-clay); text-decoration: none; border-bottom: 1px solid var(--eo-clay-light);
  font-weight: 500;
}

/* ── FULL SERVICES LIST ──────────────────────────────── */
.full-list { columns: 2; column-gap: 48px; }
.full-item {
  break-inside: avoid; display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(44,34,24,.08);
}
.full-item .fi-dot {
  flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--eo-clay-light); margin-top: 8px;
}
.full-item p { font-size: 14.5px; color: var(--eo-text); font-family: var(--eo-font-sans); font-weight: 400; line-height: 1.55; }

/* ── SIMPLE NUMBERED LIST (othodi page) ──────────────── */
.step-list { list-style: none; max-width: 720px; }
.step-list li {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid rgba(44,34,24,.08);
  font-family: var(--eo-font-sans); font-size: 15px; color: var(--eo-text); line-height: 1.6;
}
.step-list li:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--eo-card-bg); box-shadow: 0 2px 10px var(--eo-card-shadow);
  color: var(--eo-clay); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}

/* ── PRICING ─────────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; background: var(--eo-card-bg); box-shadow: 0 2px 20px var(--eo-card-shadow); }
.price-table tr { border-bottom: 1px solid rgba(44,34,24,.08); }
.price-table tr:last-child { border-bottom: none; }
.price-table td {
  padding: 18px 28px; font-family: var(--eo-font-sans); font-size: 14.5px; color: var(--eo-text);
  vertical-align: top;
}
.price-table td.price {
  white-space: nowrap; text-align: right; font-weight: 600; color: var(--eo-clay);
}
.price-note {
  margin-top: 20px; font-size: 12.5px; color: var(--eo-text-muted); font-family: var(--eo-font-sans);
}

/* ── CLIENTS ─────────────────────────────────────────── */
.clients-band {
  background: var(--eo-text); color: var(--eo-bg);
  padding: 60px 56px; text-align: center;
}
.clients-band .stat2-num { font-size: clamp(48px, 7vw, 90px); font-weight: 700; color: var(--eo-blob-green-1); font-family: var(--eo-font-serif); line-height: 1; }
.clients-band p { margin-top: 14px; font-family: var(--eo-font-sans); font-size: 15px; color: var(--eo-clay-light); max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── CONTACTS ────────────────────────────────────────── */
.contacts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card { background: var(--eo-card-bg); padding: 30px 26px; box-shadow: 0 2px 20px var(--eo-card-shadow); }
.contact-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--eo-clay); font-family: var(--eo-font-sans); font-weight: 600; margin-bottom: 12px; }
.contact-val { font-size: 15px; font-family: var(--eo-font-sans); font-weight: 500; line-height: 1.6; }
.contact-val a { text-decoration: none; }
.contact-val a:hover { color: var(--eo-clay); }
.map-wrap { margin-top: 48px; }
.map-frame { width: 100%; height: 380px; border: none; filter: grayscale(.2) sepia(.08); box-shadow: 0 2px 20px var(--eo-card-shadow); }

/* ── PAGE-LINKS (cross links row) ─────────────────────── */
.page-links { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--eo-footer-bg); color: var(--eo-footer-text);
  padding: 40px 56px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: var(--eo-font-sans); font-size: 12.5px;
}
footer nav { background: none; position: static; padding: 0; border: none; backdrop-filter: none; }
footer .footer-links { display: flex; gap: 22px; list-style: none; }
footer a { text-decoration: none; }
footer a:hover { color: var(--eo-bg); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 980px) {
  .container, .nav, .hero, .section, .clients-band, footer, .breadcrumb { padding-left: 24px; padding-right: 24px; }
  .nav ul { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .full-list { columns: 1; }
  .contacts-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .price-table td { padding: 14px 16px; font-size: 13.5px; }
  footer { flex-direction: column; align-items: flex-start; }
}
