-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (88 loc) · 6.31 KB
/
Copy pathstyles.css
File metadata and controls
92 lines (88 loc) · 6.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
:root {
--ink: #17222b;
--muted: #61717c;
--paper: #f7f8f6;
--surface: #ffffff;
--line: #dbe2e2;
--accent: #0d7772;
--accent-dark: #075b58;
--accent-soft: #dff0ed;
--shadow: 0 14px 32px rgba(23, 34, 43, 0.07);
--radius: 14px;
--container: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; }
.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.site-header { background: rgba(247, 248, 246, 0.94); border-bottom: 1px solid var(--line); }
.header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 750; text-decoration: none; letter-spacing: -.02em; }
.brand-mark { display: grid; min-width: 3.25rem; height: 2rem; padding-inline: .5rem; place-items: center; color: var(--surface); background: var(--ink); border-radius: 8px; font-size: .68rem; letter-spacing: .04em; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; font-size: .88rem; }
.site-nav a, .text-link { text-decoration: none; font-weight: 650; }
.site-nav a:hover, .text-link:hover { color: var(--accent); }
.nav-link-subtle { color: var(--muted); }
.nav-toggle { display: none; border: 1px solid var(--line); color: var(--ink); background: var(--surface); border-radius: 8px; padding: .5rem .7rem; font: inherit; font-size: .8rem; font-weight: 700; }
.hero { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--ink); color: var(--surface); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); align-items: center; gap: clamp(2.5rem, 8vw, 7rem); }
.hero-side { display: grid; gap: 1.4rem; }
.hero-side .hero-panel { margin-bottom: .75rem; }
.hero-side .hero-text { margin-bottom: 0; }
.hero-side .button { margin-top: 1rem; }
.eyebrow { margin: 0 0 1rem; color: var(--accent); font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero .eyebrow { color: #8bd0c8; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 700px; margin-bottom: 1.35rem; font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 1.03; letter-spacing: -.065em; }
.hero-text { max-width: 560px; margin-bottom: 2rem; color: #b8c5ca; font-size: clamp(1rem, 2vw, 1.2rem); }
.button { display: inline-flex; align-items: center; gap: .8rem; padding: .82rem 1.1rem; color: var(--ink); background: #a8ddd5; border: 2px solid #a8ddd5; border-radius: 8px; font-weight: 800; text-decoration: none; }
.button:hover { background: var(--surface); border-color: var(--surface); }
.hero-panel { padding: 1.6rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius); box-shadow: var(--shadow); }
.panel-label, .panel-note { display: block; color: #aebfc3; font-size: .82rem; }
.hero-panel strong { display: block; margin: .45rem 0 1.6rem; font-size: 1.35rem; }
.panel-line { display: block; width: 100%; height: 1px; margin-bottom: 1rem; background: rgba(255,255,255,.2); }
.section { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.section-heading, .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 2.5rem; }
.section-heading p:last-child { max-width: 320px; margin: 0; color: var(--muted); }
h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; letter-spacing: -.05em; }
.agenda-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.agenda-break { display: flex; grid-column: 1 / -1; align-items: center; gap: 1.25rem; margin: .35rem 0; }
.agenda-break::before, .agenda-break::after { content: ""; flex: 1; border-top: 1px dashed var(--line); }
.agenda-break span { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.agenda-card { min-height: 190px; padding: 1.4rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 5px 15px rgba(23,34,43,.03); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.agenda-card:hover { border-color: #a9cfca; box-shadow: var(--shadow); transform: translateY(-3px); }
.card-number { display: block; margin-bottom: 2.2rem; color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
h3 { margin-bottom: .35rem; font-size: 1.05rem; }
.agenda-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.section-muted { background: #e9efed; }
.info-grid { margin-bottom: 0; align-items: start; }
.info-copy { max-width: 480px; color: var(--muted); }
.info-copy p { margin-bottom: 1.35rem; }
.text-link { color: var(--accent-dark); }
.site-footer { color: #aebbc0; background: var(--ink); font-size: .8rem; }
.footer-inner { min-height: 84px; }
.footer-inner p { margin: 0; }
.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; }
:focus-visible { outline: 3px solid #f5bb58; outline-offset: 4px; }
@media (max-width: 760px) {
.container { width: min(calc(100% - 2rem), var(--container)); }
.header-inner { min-height: 68px; }
.js-enabled .nav-toggle { display: block; }
.js-enabled .site-nav { display: none; position: absolute; inset: 68px 1rem auto; z-index: 2; padding: .8rem; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }
.js-enabled .site-nav.is-open { display: grid; gap: 0; }
.js-enabled .site-nav a { padding: .65rem; }
.hero-grid, .section-heading, .info-grid { grid-template-columns: 1fr; gap: 2rem; }
.agenda-grid { grid-template-columns: repeat(2, 1fr); }
.section-heading { margin-bottom: 2rem; }
.footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; gap: .25rem; }
}
@media (max-width: 460px) {
h1 { font-size: clamp(2.45rem, 13vw, 3.5rem); }
.agenda-grid { grid-template-columns: 1fr; }
.agenda-card { min-height: 160px; }
}
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}