home.css 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024
  1. *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  2. :root {
  3. --soil: #2c1a0e;
  4. --earth: #4a2e1a;
  5. --clay: #7a4a2a;
  6. --harvest: #c8853a;
  7. --straw: #e8c87a;
  8. --sage: #6b8c5a;
  9. --leaf: #3d6b42;
  10. --mist: #f5f0e8;
  11. --cream: #faf7f2;
  12. --white: #ffffff;
  13. --text-dark: #1a1209;
  14. --text-mid: #4a3828;
  15. --text-light: #8a7060;
  16. --border: rgba(122,74,42,0.15);
  17. }
  18. html { scroll-behavior: smooth; }
  19. body {
  20. font-family: 'DM Sans', sans-serif;
  21. background: var(--cream);
  22. color: var(--text-dark);
  23. overflow-x: hidden;
  24. }
  25. /* ── NAV ────────────────────────────────── */
  26. nav {
  27. position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  28. display: flex; align-items: center; justify-content: space-between;
  29. padding: 0 4rem;
  30. height: 72px;
  31. background: rgba(250,247,242,0.92);
  32. backdrop-filter: blur(12px);
  33. border-bottom: 1px solid var(--border);
  34. }
  35. .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  36. .nav-logo-mark {
  37. width: 36px; height: 36px;
  38. background: var(--leaf);
  39. border-radius: 50%;
  40. display: flex; align-items: center; justify-content: center;
  41. font-size: 18px;
  42. }
  43. .nav-logo-text {
  44. font-family: 'Playfair Display', serif;
  45. font-size: 1.1rem;
  46. font-weight: 600;
  47. color: var(--soil);
  48. letter-spacing: 0.02em;
  49. }
  50. .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  51. .nav-links a {
  52. text-decoration: none;
  53. font-size: 0.875rem;
  54. font-weight: 400;
  55. color: var(--text-mid);
  56. letter-spacing: 0.03em;
  57. transition: color 0.2s;
  58. }
  59. .nav-links a:hover { color: var(--leaf); }
  60. .nav-cta {
  61. display: flex; gap: 1rem; align-items: center;
  62. }
  63. .btn-outline {
  64. padding: 0.5rem 1.25rem;
  65. border: 1.5px solid var(--clay);
  66. border-radius: 4px;
  67. font-size: 0.875rem;
  68. color: var(--clay);
  69. text-decoration: none;
  70. transition: all 0.2s;
  71. font-weight: 500;
  72. }
  73. .btn-outline:hover { background: var(--clay); color: white; }
  74. .btn-primary {
  75. padding: 0.5rem 1.4rem;
  76. background: var(--leaf);
  77. border-radius: 4px;
  78. font-size: 0.875rem;
  79. color: white;
  80. text-decoration: none;
  81. font-weight: 500;
  82. transition: background 0.2s;
  83. }
  84. .btn-primary:hover { background: var(--sage); }
  85. /* ── HERO ───────────────────────────────── */
  86. .hero {
  87. min-height: 100vh;
  88. display: grid;
  89. grid-template-columns: 1fr 1fr;
  90. position: relative;
  91. overflow: hidden;
  92. }
  93. .hero-left {
  94. padding: 10rem 4rem 6rem 4rem;
  95. display: flex;
  96. flex-direction: column;
  97. justify-content: center;
  98. position: relative;
  99. z-index: 2;
  100. }
  101. .hero-eyebrow {
  102. display: inline-flex;
  103. align-items: center;
  104. gap: 8px;
  105. font-family: 'DM Mono', monospace;
  106. font-size: 0.72rem;
  107. letter-spacing: 0.15em;
  108. text-transform: uppercase;
  109. color: var(--harvest);
  110. margin-bottom: 1.5rem;
  111. }
  112. .hero-eyebrow::before {
  113. content: '';
  114. display: inline-block;
  115. width: 24px; height: 1px;
  116. background: var(--harvest);
  117. }
  118. .hero h1 {
  119. font-family: 'Playfair Display', serif;
  120. font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  121. font-weight: 700;
  122. line-height: 1.1;
  123. color: var(--soil);
  124. margin-bottom: 1.5rem;
  125. }
  126. .hero h1 em {
  127. font-style: normal;
  128. color: var(--leaf);
  129. }
  130. .hero-desc {
  131. font-size: 1.05rem;
  132. line-height: 1.7;
  133. color: var(--text-mid);
  134. max-width: 480px;
  135. margin-bottom: 2.5rem;
  136. font-weight: 300;
  137. }
  138. .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
  139. .btn-hero {
  140. padding: 0.9rem 2.2rem;
  141. background: var(--soil);
  142. color: white;
  143. border-radius: 4px;
  144. text-decoration: none;
  145. font-weight: 500;
  146. font-size: 0.95rem;
  147. transition: background 0.2s;
  148. letter-spacing: 0.02em;
  149. }
  150. .btn-hero:hover { background: var(--earth); }
  151. .btn-hero-sec {
  152. padding: 0.9rem 2.2rem;
  153. border: 1.5px solid var(--clay);
  154. color: var(--clay);
  155. border-radius: 4px;
  156. text-decoration: none;
  157. font-weight: 500;
  158. font-size: 0.95rem;
  159. transition: all 0.2s;
  160. }
  161. .btn-hero-sec:hover { background: var(--mist); }
  162. .hero-stats {
  163. display: flex;
  164. gap: 2.5rem;
  165. margin-top: 3.5rem;
  166. padding-top: 2rem;
  167. border-top: 1px solid var(--border);
  168. }
  169. .hero-stat {}
  170. .hero-stat-num {
  171. font-family: 'Playfair Display', serif;
  172. font-size: 2rem;
  173. font-weight: 700;
  174. color: var(--soil);
  175. line-height: 1;
  176. }
  177. .hero-stat-label {
  178. font-size: 0.78rem;
  179. color: var(--text-light);
  180. letter-spacing: 0.05em;
  181. margin-top: 4px;
  182. }
  183. .hero-right {
  184. position: relative;
  185. background: var(--soil);
  186. overflow: hidden;
  187. }
  188. .hero-right::before {
  189. content: '';
  190. position: absolute; inset: 0;
  191. background:
  192. radial-gradient(ellipse at 30% 50%, rgba(107,140,90,0.25) 0%, transparent 60%),
  193. radial-gradient(ellipse at 80% 20%, rgba(200,133,58,0.2) 0%, transparent 50%);
  194. }
  195. .hero-soil-diagram {
  196. position: absolute;
  197. top: 50%; left: 50%;
  198. transform: translate(-50%, -50%);
  199. width: 340px;
  200. }
  201. .soil-layer {
  202. padding: 1rem 1.5rem;
  203. border-left: 3px solid transparent;
  204. margin-bottom: 2px;
  205. transition: border-color 0.3s;
  206. cursor: default;
  207. }
  208. .soil-layer:nth-child(1) { background: rgba(255,255,255,0.05); border-color: var(--straw); }
  209. .soil-layer:nth-child(2) { background: rgba(255,255,255,0.08); border-color: var(--harvest); }
  210. .soil-layer:nth-child(3) { background: rgba(255,255,255,0.11); border-color: var(--clay); }
  211. .soil-layer:nth-child(4) { background: rgba(255,255,255,0.07); border-color: var(--sage); }
  212. .soil-layer-label {
  213. font-family: 'DM Mono', monospace;
  214. font-size: 0.65rem;
  215. letter-spacing: 0.1em;
  216. text-transform: uppercase;
  217. color: rgba(255,255,255,0.45);
  218. margin-bottom: 4px;
  219. }
  220. .soil-layer-name {
  221. font-family: 'Playfair Display', serif;
  222. font-size: 1rem;
  223. color: rgba(255,255,255,0.9);
  224. font-weight: 600;
  225. }
  226. .soil-layer-detail {
  227. font-size: 0.75rem;
  228. color: rgba(255,255,255,0.5);
  229. margin-top: 3px;
  230. }
  231. .hero-cation-ring {
  232. position: absolute;
  233. bottom: 2rem; right: 2rem;
  234. width: 160px; height: 160px;
  235. }
  236. .cation-ring-label {
  237. position: absolute; inset: 0;
  238. display: flex; flex-direction: column;
  239. align-items: center; justify-content: center;
  240. text-align: center;
  241. }
  242. .cation-ring-label span:first-child {
  243. font-family: 'DM Mono', monospace;
  244. font-size: 0.6rem;
  245. letter-spacing: 0.08em;
  246. text-transform: uppercase;
  247. color: rgba(255,255,255,0.4);
  248. }
  249. .cation-ring-label strong {
  250. font-family: 'Playfair Display', serif;
  251. font-size: 1.4rem;
  252. color: rgba(255,255,255,0.9);
  253. }
  254. /* ── MARQUEE BAND ───────────────────────── */
  255. .marquee-band {
  256. background: var(--soil);
  257. padding: 1rem 0;
  258. overflow: hidden;
  259. display: flex;
  260. }
  261. .marquee-track {
  262. display: flex;
  263. gap: 3rem;
  264. animation: marquee 30s linear infinite;
  265. white-space: nowrap;
  266. }
  267. .marquee-item {
  268. font-family: 'DM Mono', monospace;
  269. font-size: 0.75rem;
  270. letter-spacing: 0.1em;
  271. text-transform: uppercase;
  272. color: rgba(255,255,255,0.5);
  273. display: flex; align-items: center; gap: 1rem;
  274. }
  275. .marquee-item::after {
  276. content: '◆';
  277. color: var(--harvest);
  278. font-size: 0.5rem;
  279. }
  280. @keyframes marquee {
  281. 0% { transform: translateX(0); }
  282. 100% { transform: translateX(-50%); }
  283. }
  284. /* ── SECTION SHARED ─────────────────────── */
  285. section { padding: 7rem 4rem; }
  286. .section-eyebrow {
  287. font-family: 'DM Mono', monospace;
  288. font-size: 0.7rem;
  289. letter-spacing: 0.15em;
  290. text-transform: uppercase;
  291. color: var(--harvest);
  292. margin-bottom: 1rem;
  293. display: flex; align-items: center; gap: 8px;
  294. }
  295. .section-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--harvest); }
  296. .section-title {
  297. font-family: 'Playfair Display', serif;
  298. font-size: clamp(2rem, 3vw, 2.8rem);
  299. font-weight: 700;
  300. color: var(--soil);
  301. line-height: 1.15;
  302. margin-bottom: 1rem;
  303. }
  304. .section-sub {
  305. font-size: 1rem;
  306. color: var(--text-light);
  307. line-height: 1.7;
  308. font-weight: 300;
  309. }
  310. /* ── ALBRECHT / SCIENCE SECTION ─────────── */
  311. .albrecht {
  312. background: var(--mist);
  313. padding: 7rem 4rem;
  314. }
  315. .albrecht-grid {
  316. display: grid;
  317. grid-template-columns: 1fr 1fr;
  318. gap: 6rem;
  319. align-items: start;
  320. max-width: 1200px;
  321. margin: 0 auto;
  322. }
  323. .albrecht-left {}
  324. .albrecht-body {
  325. margin-top: 1.5rem;
  326. font-size: 0.95rem;
  327. line-height: 1.8;
  328. color: var(--text-mid);
  329. font-weight: 300;
  330. }
  331. .albrecht-body p + p { margin-top: 1rem; }
  332. .albrecht-quote {
  333. margin: 2rem 0;
  334. padding: 1.5rem 1.5rem 1.5rem 2rem;
  335. border-left: 3px solid var(--harvest);
  336. background: white;
  337. border-radius: 0 6px 6px 0;
  338. }
  339. .albrecht-quote p {
  340. font-family: 'Playfair Display', serif;
  341. font-size: 1.05rem;
  342. font-style: italic;
  343. color: var(--soil);
  344. line-height: 1.6;
  345. }
  346. .albrecht-quote cite {
  347. display: block;
  348. margin-top: 0.75rem;
  349. font-family: 'DM Mono', monospace;
  350. font-size: 0.7rem;
  351. letter-spacing: 0.08em;
  352. text-transform: uppercase;
  353. color: var(--text-light);
  354. font-style: normal;
  355. }
  356. .albrecht-right {}
  357. /* Cation Ratio Visual */
  358. .cation-chart {
  359. background: var(--soil);
  360. border-radius: 12px;
  361. padding: 2rem;
  362. color: white;
  363. }
  364. .cation-chart-title {
  365. font-family: 'DM Mono', monospace;
  366. font-size: 0.7rem;
  367. letter-spacing: 0.12em;
  368. text-transform: uppercase;
  369. color: rgba(255,255,255,0.4);
  370. margin-bottom: 1.5rem;
  371. text-align: center;
  372. }
  373. .cation-bar-row {
  374. display: flex;
  375. align-items: center;
  376. gap: 1rem;
  377. margin-bottom: 1.2rem;
  378. }
  379. .cation-label {
  380. width: 70px;
  381. font-family: 'DM Mono', monospace;
  382. font-size: 0.75rem;
  383. color: rgba(255,255,255,0.6);
  384. flex-shrink: 0;
  385. }
  386. .cation-bar-track {
  387. flex: 1;
  388. height: 8px;
  389. background: rgba(255,255,255,0.08);
  390. border-radius: 4px;
  391. overflow: hidden;
  392. }
  393. .cation-bar-fill {
  394. height: 100%;
  395. border-radius: 4px;
  396. animation: barGrow 1.5s ease-out both;
  397. }
  398. @keyframes barGrow {
  399. from { width: 0 !important; }
  400. }
  401. .cation-val {
  402. font-family: 'Playfair Display', serif;
  403. font-size: 0.9rem;
  404. color: rgba(255,255,255,0.9);
  405. width: 40px;
  406. text-align: right;
  407. flex-shrink: 0;
  408. }
  409. .cation-note {
  410. margin-top: 1.5rem;
  411. padding-top: 1.5rem;
  412. border-top: 1px solid rgba(255,255,255,0.1);
  413. font-size: 0.78rem;
  414. color: rgba(255,255,255,0.35);
  415. line-height: 1.6;
  416. text-align: center;
  417. }
  418. .principle-cards {
  419. display: flex;
  420. flex-direction: column;
  421. gap: 1rem;
  422. margin-top: 2rem;
  423. }
  424. .principle-card {
  425. background: white;
  426. border-radius: 8px;
  427. padding: 1.25rem 1.5rem;
  428. display: flex;
  429. gap: 1rem;
  430. align-items: flex-start;
  431. border: 1px solid var(--border);
  432. transition: border-color 0.2s, box-shadow 0.2s;
  433. }
  434. .principle-card:hover {
  435. border-color: var(--sage);
  436. box-shadow: 0 4px 20px rgba(61,107,66,0.08);
  437. }
  438. .principle-icon {
  439. width: 40px; height: 40px;
  440. border-radius: 8px;
  441. background: var(--mist);
  442. display: flex; align-items: center; justify-content: center;
  443. font-size: 1.1rem;
  444. flex-shrink: 0;
  445. }
  446. .principle-card h4 {
  447. font-family: 'Playfair Display', serif;
  448. font-size: 0.95rem;
  449. color: var(--soil);
  450. margin-bottom: 4px;
  451. }
  452. .principle-card p {
  453. font-size: 0.82rem;
  454. color: var(--text-light);
  455. line-height: 1.6;
  456. }
  457. /* ── SERVICES ───────────────────────────── */
  458. .services {
  459. background: white;
  460. }
  461. .services-inner { max-width: 1200px; margin: 0 auto; }
  462. .services-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
  463. .services-grid {
  464. display: grid;
  465. grid-template-columns: repeat(3, 1fr);
  466. gap: 2px;
  467. background: var(--border);
  468. }
  469. .service-card {
  470. background: white;
  471. padding: 3rem 2.5rem;
  472. position: relative;
  473. overflow: hidden;
  474. transition: background 0.3s;
  475. }
  476. .service-card::before {
  477. content: '';
  478. position: absolute;
  479. bottom: 0; left: 0; right: 0;
  480. height: 3px;
  481. background: var(--leaf);
  482. transform: scaleX(0);
  483. transform-origin: left;
  484. transition: transform 0.3s;
  485. }
  486. .service-card:hover { background: var(--cream); }
  487. .service-card:hover::before { transform: scaleX(1); }
  488. .service-num {
  489. font-family: 'DM Mono', monospace;
  490. font-size: 0.65rem;
  491. letter-spacing: 0.12em;
  492. color: var(--harvest);
  493. margin-bottom: 1.5rem;
  494. }
  495. .service-icon-wrap {
  496. width: 56px; height: 56px;
  497. background: var(--mist);
  498. border-radius: 12px;
  499. display: flex; align-items: center; justify-content: center;
  500. font-size: 1.5rem;
  501. margin-bottom: 1.5rem;
  502. }
  503. .service-card h3 {
  504. font-family: 'Playfair Display', serif;
  505. font-size: 1.3rem;
  506. color: var(--soil);
  507. margin-bottom: 0.75rem;
  508. }
  509. .service-card p {
  510. font-size: 0.875rem;
  511. color: var(--text-light);
  512. line-height: 1.7;
  513. margin-bottom: 1.5rem;
  514. }
  515. .service-link {
  516. font-size: 0.8rem;
  517. font-weight: 500;
  518. color: var(--leaf);
  519. text-decoration: none;
  520. letter-spacing: 0.05em;
  521. display: flex; align-items: center; gap: 6px;
  522. transition: gap 0.2s;
  523. }
  524. .service-link:hover { gap: 10px; }
  525. /* ── SOIL HEALTH TRIANGLE ───────────────── */
  526. .science {
  527. background: var(--cream);
  528. }
  529. .science-inner { max-width: 1200px; margin: 0 auto; }
  530. .science-layout {
  531. display: grid;
  532. grid-template-columns: 1fr 1fr;
  533. gap: 5rem;
  534. align-items: center;
  535. }
  536. .pillars {
  537. display: flex;
  538. flex-direction: column;
  539. gap: 1.5rem;
  540. }
  541. .pillar {
  542. display: flex;
  543. gap: 1.5rem;
  544. align-items: flex-start;
  545. padding: 1.5rem;
  546. border-radius: 10px;
  547. background: white;
  548. border: 1px solid var(--border);
  549. transition: transform 0.2s, box-shadow 0.2s;
  550. }
  551. .pillar:hover { transform: translateX(6px); box-shadow: -4px 0 0 0 var(--harvest), 0 4px 20px rgba(0,0,0,0.06); }
  552. .pillar-number {
  553. font-family: 'Playfair Display', serif;
  554. font-size: 2.5rem;
  555. font-weight: 700;
  556. color: var(--mist);
  557. line-height: 1;
  558. flex-shrink: 0;
  559. width: 2rem;
  560. }
  561. .pillar h4 {
  562. font-family: 'Playfair Display', serif;
  563. font-size: 1.1rem;
  564. color: var(--soil);
  565. margin-bottom: 0.4rem;
  566. }
  567. .pillar p {
  568. font-size: 0.85rem;
  569. color: var(--text-light);
  570. line-height: 1.6;
  571. }
  572. .science-visual {
  573. position: relative;
  574. }
  575. .soil-profile-card {
  576. background: var(--soil);
  577. border-radius: 16px;
  578. overflow: hidden;
  579. padding: 2.5rem;
  580. }
  581. .soil-profile-title {
  582. font-family: 'DM Mono', monospace;
  583. font-size: 0.65rem;
  584. letter-spacing: 0.12em;
  585. text-transform: uppercase;
  586. color: rgba(255,255,255,0.35);
  587. margin-bottom: 2rem;
  588. }
  589. .nutrient-row {
  590. display: flex;
  591. align-items: center;
  592. gap: 1rem;
  593. margin-bottom: 1.4rem;
  594. }
  595. .nutrient-name {
  596. font-family: 'DM Mono', monospace;
  597. font-size: 0.8rem;
  598. color: rgba(255,255,255,0.5);
  599. width: 100px;
  600. flex-shrink: 0;
  601. }
  602. .nutrient-bar-track {
  603. flex: 1;
  604. height: 6px;
  605. background: rgba(255,255,255,0.07);
  606. border-radius: 3px;
  607. overflow: hidden;
  608. }
  609. .nutrient-bar-fill {
  610. height: 100%;
  611. border-radius: 3px;
  612. }
  613. .nutrient-status {
  614. font-family: 'DM Mono', monospace;
  615. font-size: 0.65rem;
  616. letter-spacing: 0.06em;
  617. text-transform: uppercase;
  618. flex-shrink: 0;
  619. width: 60px;
  620. text-align: right;
  621. }
  622. .status-optimal { color: #7dc87a; }
  623. .status-low { color: var(--harvest); }
  624. .status-high { color: #e07070; }
  625. .status-caution { color: #e8c87a; }
  626. .soil-profile-footer {
  627. margin-top: 2rem;
  628. padding-top: 1.5rem;
  629. border-top: 1px solid rgba(255,255,255,0.08);
  630. display: flex;
  631. justify-content: space-between;
  632. align-items: center;
  633. }
  634. .soil-score {
  635. display: flex; flex-direction: column;
  636. }
  637. .soil-score-label {
  638. font-family: 'DM Mono', monospace;
  639. font-size: 0.6rem;
  640. letter-spacing: 0.1em;
  641. text-transform: uppercase;
  642. color: rgba(255,255,255,0.3);
  643. }
  644. .soil-score-val {
  645. font-family: 'Playfair Display', serif;
  646. font-size: 2rem;
  647. font-weight: 700;
  648. color: #7dc87a;
  649. line-height: 1.1;
  650. }
  651. .soil-score-sub {
  652. font-size: 0.72rem;
  653. color: rgba(255,255,255,0.3);
  654. }
  655. .soil-alert {
  656. background: rgba(200,133,58,0.15);
  657. border: 1px solid rgba(200,133,58,0.3);
  658. border-radius: 6px;
  659. padding: 0.6rem 1rem;
  660. font-size: 0.75rem;
  661. color: var(--straw);
  662. max-width: 160px;
  663. text-align: center;
  664. line-height: 1.4;
  665. }
  666. /* ── HOW IT WORKS ───────────────────────── */
  667. .process {
  668. background: var(--mist);
  669. }
  670. .process-inner { max-width: 1100px; margin: 0 auto; }
  671. .process-header { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
  672. .steps {
  673. display: grid;
  674. grid-template-columns: repeat(4, 1fr);
  675. gap: 0;
  676. position: relative;
  677. }
  678. .steps::before {
  679. content: '';
  680. position: absolute;
  681. top: 32px;
  682. left: 12.5%; right: 12.5%;
  683. height: 1px;
  684. background: var(--border);
  685. }
  686. .step {
  687. padding: 0 1.5rem;
  688. text-align: center;
  689. }
  690. .step-num {
  691. width: 64px; height: 64px;
  692. background: white;
  693. border: 2px solid var(--border);
  694. border-radius: 50%;
  695. display: flex; align-items: center; justify-content: center;
  696. font-family: 'Playfair Display', serif;
  697. font-size: 1.3rem;
  698. font-weight: 700;
  699. color: var(--soil);
  700. margin: 0 auto 1.5rem;
  701. position: relative;
  702. z-index: 1;
  703. transition: background 0.2s, border-color 0.2s;
  704. }
  705. .step:hover .step-num {
  706. background: var(--soil);
  707. border-color: var(--soil);
  708. color: white;
  709. }
  710. .step h4 {
  711. font-family: 'Playfair Display', serif;
  712. font-size: 1rem;
  713. color: var(--soil);
  714. margin-bottom: 0.6rem;
  715. }
  716. .step p {
  717. font-size: 0.82rem;
  718. color: var(--text-light);
  719. line-height: 1.6;
  720. }
  721. /* ── ABOUT / TEAM ───────────────────────── */
  722. .about {
  723. background: var(--soil);
  724. color: white;
  725. }
  726. .about-inner {
  727. max-width: 1200px;
  728. margin: 0 auto;
  729. display: grid;
  730. grid-template-columns: 1fr 1fr;
  731. gap: 6rem;
  732. align-items: center;
  733. }
  734. .about .section-eyebrow { color: var(--straw); }
  735. .about .section-eyebrow::before { background: var(--straw); }
  736. .about .section-title { color: white; }
  737. .about-text {
  738. font-size: 0.95rem;
  739. line-height: 1.8;
  740. color: rgba(255,255,255,0.6);
  741. font-weight: 300;
  742. margin-top: 1rem;
  743. }
  744. .about-text p + p { margin-top: 1rem; }
  745. .about-metrics {
  746. display: grid;
  747. grid-template-columns: 1fr 1fr;
  748. gap: 1.5rem;
  749. margin-top: 2.5rem;
  750. }
  751. .about-metric {
  752. padding: 1.5rem;
  753. background: rgba(255,255,255,0.05);
  754. border-radius: 8px;
  755. border: 1px solid rgba(255,255,255,0.08);
  756. }
  757. .about-metric-num {
  758. font-family: 'Playfair Display', serif;
  759. font-size: 2.2rem;
  760. font-weight: 700;
  761. color: var(--straw);
  762. line-height: 1;
  763. }
  764. .about-metric-label {
  765. font-size: 0.8rem;
  766. color: rgba(255,255,255,0.4);
  767. margin-top: 6px;
  768. letter-spacing: 0.03em;
  769. }
  770. .team-cards {
  771. display: grid;
  772. grid-template-columns: 1fr 1fr;
  773. gap: 1.5rem;
  774. }
  775. .team-card {
  776. background: rgba(255,255,255,0.05);
  777. border: 1px solid rgba(255,255,255,0.08);
  778. border-radius: 10px;
  779. padding: 1.5rem;
  780. transition: background 0.2s;
  781. }
  782. .team-card:hover { background: rgba(255,255,255,0.09); }
  783. .team-avatar {
  784. width: 52px; height: 52px;
  785. border-radius: 50%;
  786. background: var(--earth);
  787. display: flex; align-items: center; justify-content: center;
  788. font-family: 'Playfair Display', serif;
  789. font-size: 1.2rem;
  790. font-weight: 700;
  791. color: var(--straw);
  792. margin-bottom: 1rem;
  793. }
  794. .team-card h4 {
  795. font-family: 'Playfair Display', serif;
  796. color: white;
  797. font-size: 1rem;
  798. margin-bottom: 2px;
  799. }
  800. .team-card span {
  801. font-size: 0.75rem;
  802. color: var(--harvest);
  803. font-family: 'DM Mono', monospace;
  804. letter-spacing: 0.05em;
  805. }
  806. /* ── CONTACT ────────────────────────────── */
  807. .contact-section {
  808. background: white;
  809. }
  810. .contact-inner {
  811. max-width: 1200px;
  812. margin: 0 auto;
  813. display: grid;
  814. grid-template-columns: 1fr 1fr;
  815. gap: 6rem;
  816. }
  817. .contact-form {
  818. display: flex;
  819. flex-direction: column;
  820. gap: 1.25rem;
  821. }
  822. .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  823. .form-field {
  824. display: flex;
  825. flex-direction: column;
  826. gap: 0.5rem;
  827. }
  828. .form-field label {
  829. font-size: 0.78rem;
  830. font-weight: 500;
  831. color: var(--text-mid);
  832. letter-spacing: 0.03em;
  833. }
  834. .form-field input,
  835. .form-field textarea,
  836. .form-field select {
  837. padding: 0.75rem 1rem;
  838. border: 1.5px solid var(--border);
  839. border-radius: 6px;
  840. font-family: 'DM Sans', sans-serif;
  841. font-size: 0.9rem;
  842. color: var(--text-dark);
  843. background: var(--cream);
  844. transition: border-color 0.2s;
  845. outline: none;
  846. }
  847. .form-field input:focus,
  848. .form-field textarea:focus,
  849. .form-field select:focus { border-color: var(--leaf); }
  850. .form-field textarea { resize: vertical; min-height: 120px; }
  851. .form-submit {
  852. padding: 0.9rem 2rem;
  853. background: var(--soil);
  854. color: white;
  855. border: none;
  856. border-radius: 6px;
  857. font-family: 'DM Sans', sans-serif;
  858. font-size: 0.95rem;
  859. font-weight: 500;
  860. cursor: pointer;
  861. transition: background 0.2s;
  862. align-self: flex-start;
  863. }
  864. .form-submit:hover { background: var(--earth); }
  865. .contact-info { padding-top: 3rem; }
  866. .contact-info-item {
  867. display: flex;
  868. gap: 1rem;
  869. align-items: flex-start;
  870. margin-bottom: 2rem;
  871. }
  872. .contact-info-icon {
  873. width: 42px; height: 42px;
  874. background: var(--mist);
  875. border-radius: 8px;
  876. display: flex; align-items: center; justify-content: center;
  877. font-size: 1rem;
  878. flex-shrink: 0;
  879. }
  880. .contact-info-label {
  881. font-family: 'DM Mono', monospace;
  882. font-size: 0.65rem;
  883. letter-spacing: 0.1em;
  884. text-transform: uppercase;
  885. color: var(--text-light);
  886. margin-bottom: 3px;
  887. }
  888. .contact-info-val {
  889. font-size: 0.9rem;
  890. color: var(--text-dark);
  891. }
  892. /* ── FOOTER ─────────────────────────────── */
  893. footer {
  894. background: var(--soil);
  895. padding: 3rem 4rem 2rem;
  896. }
  897. .footer-inner {
  898. max-width: 1200px;
  899. margin: 0 auto;
  900. }
  901. .footer-top {
  902. display: flex;
  903. justify-content: space-between;
  904. align-items: flex-start;
  905. padding-bottom: 2rem;
  906. border-bottom: 1px solid rgba(255,255,255,0.1);
  907. margin-bottom: 2rem;
  908. }
  909. .footer-logo {
  910. display: flex; align-items: center; gap: 10px;
  911. text-decoration: none;
  912. }
  913. .footer-logo-mark {
  914. width: 32px; height: 32px;
  915. background: var(--leaf);
  916. border-radius: 50%;
  917. display: flex; align-items: center; justify-content: center;
  918. font-size: 16px;
  919. }
  920. .footer-logo-text {
  921. font-family: 'Playfair Display', serif;
  922. color: rgba(255,255,255,0.85);
  923. font-size: 1rem;
  924. }
  925. .footer-tagline {
  926. font-size: 0.8rem;
  927. color: rgba(255,255,255,0.3);
  928. margin-top: 6px;
  929. max-width: 200px;
  930. }
  931. .footer-nav-group h5 {
  932. font-family: 'DM Mono', monospace;
  933. font-size: 0.65rem;
  934. letter-spacing: 0.12em;
  935. text-transform: uppercase;
  936. color: rgba(255,255,255,0.35);
  937. margin-bottom: 1rem;
  938. }
  939. .footer-nav-group ul { list-style: none; }
  940. .footer-nav-group li + li { margin-top: 0.6rem; }
  941. .footer-nav-group a {
  942. text-decoration: none;
  943. font-size: 0.85rem;
  944. color: rgba(255,255,255,0.55);
  945. transition: color 0.2s;
  946. }
  947. .footer-nav-group a:hover { color: rgba(255,255,255,0.9); }
  948. .footer-bottom {
  949. display: flex;
  950. justify-content: space-between;
  951. align-items: center;
  952. }
  953. .footer-copy {
  954. font-size: 0.78rem;
  955. color: rgba(255,255,255,0.25);
  956. }
  957. .footer-badge {
  958. font-family: 'DM Mono', monospace;
  959. font-size: 0.65rem;
  960. letter-spacing: 0.08em;
  961. text-transform: uppercase;
  962. color: rgba(255,255,255,0.2);
  963. }
  964. /* ── FADE IN ANIMATIONS ─────────────────── */
  965. .fade-up {
  966. opacity: 0;
  967. transform: translateY(24px);
  968. transition: opacity 0.7s ease, transform 0.7s ease;
  969. }
  970. .fade-up.visible {
  971. opacity: 1;
  972. transform: translateY(0);
  973. }
  974. .fade-up:nth-child(1) { transition-delay: 0.1s; }
  975. .fade-up:nth-child(2) { transition-delay: 0.2s; }
  976. .fade-up:nth-child(3) { transition-delay: 0.3s; }
  977. .fade-up:nth-child(4) { transition-delay: 0.4s; }
  978. /* ── RESPONSIVE ─────────────────────────── */
  979. @media (max-width: 900px) {
  980. nav { padding: 0 1.5rem; }
  981. .nav-links { display: none; }
  982. section { padding: 5rem 1.5rem; }
  983. .hero { grid-template-columns: 1fr; min-height: auto; }
  984. .hero-left { padding: 8rem 1.5rem 4rem; }
  985. .hero-right { height: 340px; }
  986. .albrecht-grid,
  987. .science-layout,
  988. .about-inner,
  989. .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  990. .services-grid,
  991. .team-cards,
  992. .steps { grid-template-columns: 1fr 1fr; }
  993. .steps::before { display: none; }
  994. footer { padding: 3rem 1.5rem 2rem; }
  995. .footer-top { flex-direction: column; gap: 2rem; }
  996. .footer-bottom { flex-direction: column; gap: 1rem; }
  997. }
  998. @media (max-width: 600px) {
  999. .services-grid,
  1000. .team-cards,
  1001. .about-metrics,
  1002. .steps { grid-template-columns: 1fr; }
  1003. .form-row { grid-template-columns: 1fr; }
  1004. }