/* The Website Workhouse — v2 design tokens and styles
   Minimalist · Art Deco · Scandinavian. Mobile-first. */

@font-face { font-family: 'Josefin Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/josefin-sans-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/manrope-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/manrope-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/manrope-latin-700-normal.woff2') format('woff2'); }

:root {
  --slate: #2C3B48;
  --blue: #3E6484;
  --light: #8FB4CF;
  --off: #FCFBF8;
  --brass: #B08D57;
  --muted: #5B6B78;
  --line: #DDE3E8;
  --tint: #F3F5F7;

  --display: 'Josefin Sans', 'Segoe UI', Arial, sans-serif;
  --body: 'Manrope', 'Segoe UI', Arial, sans-serif;

  --gutter: 16px;
  --container: 1160px;
  --section: 40px;
}
@media (min-width: 640px) { :root { --gutter: 24px; --section: 56px; } }
@media (min-width: 960px) { :root { --gutter: 32px; --section: 72px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--off); color: var(--slate); font-family: var(--body); font-size: clamp(17px, 1.1vw, 18px); line-height: 1.6; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding-top: var(--section); padding-bottom: var(--section); }
.band { background: var(--slate); color: var(--off); }
.band a { color: var(--light); }
.band .eyebrow { color: var(--light); }
.band h2 { color: var(--off); }

/* Type */
h1, h2, .display { font-family: var(--display); font-weight: 600; line-height: 1.1; letter-spacing: -0.005em; margin: 0 0 0.5em; color: var(--slate); }
h1 { font-size: clamp(36px, 4.5vw, 56px); }
h2 { font-size: clamp(28px, 3vw, 40px); max-width: 22ch; }
h3 { font-family: var(--body); font-weight: 700; font-size: clamp(20px, 1.5vw, 22px); line-height: 1.3; margin: 0 0 0.4em; }
.eyebrow { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin: 0 0 14px; }
.lede { font-size: clamp(18px, 1.3vw, 21px); color: var(--muted); max-width: 52ch; }
.meta { font-size: 14px; color: var(--muted); font-weight: 500; }
.centre { text-align: center; }
.centre h2, .centre .lede { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; font-family: var(--body); font-weight: 700; font-size: 16px; border: 1.5px solid var(--blue); background: var(--blue); color: var(--off); text-decoration: none; cursor: pointer; transition: background .15s, color .15s; }
.btn:hover { background: var(--slate); border-color: var(--slate); color: var(--off); text-decoration: none; }
.btn--outline { background: transparent; color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--off); }
.band .btn { background: var(--off); color: var(--slate); border-color: var(--off); }
.band .btn:hover { background: var(--light); border-color: var(--light); }
.btn-row { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 16px; }
@media (min-width: 640px) { .btn-row { flex-direction: row; } }
.btn-row .btn { width: 100%; }
@media (min-width: 640px) { .btn-row .btn { width: auto; } }

/* Deco elements */
.deco-rule { width: 120px; height: 7px; margin: 0 auto 32px; border-top: 1px solid var(--brass); border-bottom: 1px solid var(--brass); }
.deco-rule--left { margin-left: 0; }
.stepped { position: relative; }
.stepped::before { content: ""; position: absolute; top: 0; left: 0; width: 36px; height: 3px; background: var(--blue); box-shadow: 0 6px 0 -0px var(--blue), 0 12px 0 0 var(--blue); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.stepped::before { box-shadow: none; background: linear-gradient(var(--blue), var(--blue)) 0 0/36px 2px no-repeat, linear-gradient(var(--blue), var(--blue)) 0 5px/24px 2px no-repeat, linear-gradient(var(--blue), var(--blue)) 0 10px/12px 2px no-repeat; height: 12px; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: var(--off); border-bottom: 1px solid var(--brass); }
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--slate); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { width: 40px; height: auto; }
.brand span { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1; padding-top: 3px; }
.nav { display: none; }
.nav ul { display: flex; gap: 28px; align-items: center; }
.nav a { color: var(--slate); font-weight: 500; font-size: 16px; }
.nav a:hover { color: var(--blue); text-decoration: none; }
.nav .has-menu { position: relative; }
.nav .has-menu > a::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-left: 8px; position: relative; top: -3px; }
.nav .menu { display: none; position: absolute; top: 100%; left: -16px; padding: 12px 0; min-width: 240px; background: var(--off); border: 1px solid var(--line); border-top: 2px solid var(--blue); }
.nav .has-menu:hover .menu, .nav .has-menu:focus-within .menu { display: block; }
.nav .menu li { display: block; }
.nav .menu a { display: block; padding: 8px 16px; font-size: 15px; }
.nav .menu .group { padding: 10px 16px 2px; font-family: var(--display); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.header-cta { display: none; align-items: center; gap: 20px; }
.header-cta .phone { font-weight: 700; color: var(--slate); }
.menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: 1px solid var(--line); cursor: pointer; color: var(--slate); }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 20px; height: 2px; background: currentColor; position: relative; content: ""; transition: transform .2s; }
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }
.phone-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--blue); }
.header-mobile { display: flex; gap: 8px; }
@media (min-width: 960px) {
  .nav, .header-cta { display: flex; }
  .header-mobile { display: none; }
}
.mobile-menu { display: none; position: fixed; inset: 64px 0 0 0; z-index: 40; background: var(--slate); color: var(--off); padding: 32px var(--gutter); overflow: auto; }
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu a { display: block; color: var(--off); font-family: var(--display); font-size: 24px; padding: 12px 0; border-bottom: 1px solid rgba(252,251,248,.12); }
.mobile-menu .sub a { font-family: var(--body); font-size: 17px; padding: 10px 0 10px 16px; color: var(--light); }
.mobile-menu .btn { margin-top: 24px; width: 100%; }
body[data-menu="open"] { overflow: hidden; }
body[data-menu="open"] .menu-toggle span { background: transparent; }
body[data-menu="open"] .menu-toggle span::before { transform: translateY(6px) rotate(45deg); }
body[data-menu="open"] .menu-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { padding-top: 48px; padding-bottom: 56px; }
.hero .container { display: grid; gap: 40px; align-items: center; }
.hero-art { order: -1; position: relative; width: 60%; max-width: 320px; margin: 0 auto; }
.hero-art .sunburst { position: absolute; left: -30%; top: -42%; width: 160%; height: auto; opacity: .22; color: var(--light); pointer-events: none; }
.hero-art img { position: relative; }
.hero .proof { margin-top: 6px; }
@media (min-width: 960px) {
  .hero { padding-top: 80px; padding-bottom: 96px; }
  .hero .container { grid-template-columns: 55fr 45fr; gap: 64px; }
  .hero-art { order: 0; width: 100%; max-width: 480px; margin: 0 0 0 auto; }
}

/* Trust strip */
.trust .container { display: grid; grid-template-columns: 1fr 1fr; gap: 24px var(--gutter); padding-top: 32px; padding-bottom: 32px; }
.trust li { display: flex; gap: 12px; align-items: flex-start; }
.trust svg { width: 22px; height: 22px; flex: none; color: var(--light); margin-top: 2px; }
.trust strong { display: block; font-size: 16px; }
.trust span { font-size: 14px; color: var(--light); }
@media (min-width: 960px) { .trust .container { grid-template-columns: repeat(4, 1fr); } }

/* Services */
.pillars { display: grid; gap: 40px; margin-top: 48px; }
.pillar-group { padding-top: 24px; border-top: 3px double var(--brass); }
.pillar-group h3.group-title { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); margin: 0 0 20px; }
.pillar { padding: 24px 0 8px; border-top: 1px solid var(--line); }
.pillar:first-of-type { border-top: 0; padding-top: 0; }
.pillar ul { margin: 12px 0 16px; }
.pillar li { position: relative; padding-left: 18px; font-size: 16px; color: var(--muted); margin-bottom: 6px; }
.pillar li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 2px; background: var(--blue); }
.pillar .price { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pillar .price strong { color: var(--blue); font-size: 17px; }
.pillar .price a { font-weight: 700; font-size: 15px; white-space: nowrap; }
@media (min-width: 960px) {
  .pillars { grid-template-columns: 1fr 1fr 1fr; gap: 0; }
  .pillar-group { border-top: 0; padding: 0 32px; border-left: 3px double var(--brass); }
  .pillar-group:first-child { padding-left: 0; border-left: 0; }
  .pillar-group:last-child { padding-right: 0; }
}

/* Why */
.why .container { display: grid; gap: 40px; }
.why-grid { display: grid; gap: 16px; }
.why-card { padding: 24px; border: 1px solid var(--line); background: #fff; }
.why-card h3 { font-size: 19px; }
.why-card p { margin: 0; font-size: 16px; color: var(--muted); }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .why .container { grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; } }

/* Work */
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 40px; }
.section-head h2 { margin: 0; }
.section-head a { font-weight: 700; }
.work-grid { display: grid; gap: 24px; }
.work-card { border: 1px solid var(--line); background: #fff; }
.work-card .shot { aspect-ratio: 3 / 2; background: var(--slate); overflow: hidden; position: relative; }
.work-card .shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.work-card .shot .soon { position: absolute; inset: 0; display: grid; place-items: center; color: var(--light); font-family: var(--display); letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px; }
.work-card .body { padding: 20px 24px 24px; }
.work-card .tag { display: inline-block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--blue); border: 1px solid var(--light); padding: 4px 8px; margin-bottom: 12px; }
.work-card p { font-size: 16px; color: var(--muted); margin: 0 0 12px; }
.work-card a.more { font-weight: 700; font-size: 15px; }
@media (min-width: 640px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }

/* Founder */
.founder .container { display: grid; gap: 40px; align-items: center; }
.founder .photo { aspect-ratio: 1; background: var(--tint); border: 1px solid var(--line); max-width: 420px; overflow: hidden; }
@media (min-width: 960px) { .founder .container { grid-template-columns: 2fr 3fr; gap: 80px; } }

/* Process */
.steps { display: grid; gap: 32px; margin-top: 48px; }
.step { border-top: 1px solid var(--line); padding-top: 20px; }
.step:first-child { border-top-color: var(--blue); border-top-width: 2px; }
.step .num { font-family: var(--display); font-size: 48px; line-height: 1; color: var(--light); margin-bottom: 8px; }
.step .when { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.step h3 { font-size: 19px; margin: 8px 0; }
.step p { font-size: 16px; color: var(--muted); margin: 0; }
@media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* Audit */
.audit .container { display: grid; gap: 40px; align-items: center; }
.audit .lede { color: var(--light); }
.form { background: var(--off); color: var(--slate); padding: 28px; }
.form label { display: block; font-weight: 700; font-size: 14px; margin: 0 0 6px; }
.form input { width: 100%; min-height: 48px; padding: 0 14px; font: inherit; font-size: 16px; color: var(--slate); background: #fff; border: 1px solid var(--line); margin-bottom: 16px; }
.form input:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 2px rgba(62,100,132,.2); }
.form .btn { width: 100%; }
.form .meta { text-align: center; margin: 12px 0 0; }
.hp { position: absolute; left: -9999px; }
@media (min-width: 960px) { .audit .container { grid-template-columns: 1fr 1fr; gap: 80px; } }

/* FAQ */
.faq .container { display: grid; gap: 32px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 0; font-weight: 700; font-size: 18px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 8px; top: 28px; width: 10px; height: 10px; border-right: 1.5px solid var(--blue); border-bottom: 1.5px solid var(--blue); transform: rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(-135deg); top: 32px; }
.faq details p { margin: 0 0 20px; color: var(--muted); font-size: 16px; max-width: 64ch; }
@media (min-width: 960px) { .faq .container { grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; } }

/* Final CTA */
.final { border-top: 1px solid var(--line); }
.final .btn-row { justify-content: center; align-items: center; }
.final .or { font-weight: 700; }

/* Footer */
.footer { padding-top: 64px; padding-bottom: 32px; font-size: 15px; }
.footer .cols { display: grid; gap: 32px; }
.footer .about img { width: 180px; margin-bottom: 16px; }
.footer .about p { color: var(--light); max-width: 34ch; }
.footer h4 { font-family: var(--display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--off); margin: 0 0 14px; }
.footer li { margin-bottom: 8px; }
.footer a { color: var(--off); }
.footer a:hover { color: var(--light); }
.footer .notices { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(252,251,248,.15); color: var(--light); font-size: 13px; }
.footer .notices p { margin: 0 0 8px; max-width: 90ch; }
.footer .legal { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; margin-top: 24px; color: var(--light); font-size: 13px; }
@media (min-width: 640px) { .footer .cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer .cols { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

/* Utilities */
.todo { background: #FFF3C4; color: #6B4E00; border: 1px dashed #C9A227; padding: 0 4px; font-size: .9em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

/* Service areas */
.areas-grid { display: grid; gap: 24px; margin-top: 32px; }
.areas-grid > div { padding: 24px 0 0; border-top: 1px solid var(--line); }
.areas-grid h3 { font-size: 19px; }
.areas-grid h3 a { color: var(--slate); }
.areas-grid h3 a:hover { color: var(--blue); }
.areas-grid p { margin: 0; font-size: 16px; color: var(--muted); }
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

/* Contrast fixes on slate bands */
.why-card h3 { color: var(--slate); }
.band .step p, .band .step .when { color: var(--light); }
.band .step { border-top-color: rgba(252,251,248,.18); }
.band .step:first-child { border-top-color: var(--light); }
.band .faq summary { color: var(--off); }
.band .faq details p { color: var(--light); }
.band .faq details, .band .faq details:last-child { border-color: rgba(252,251,248,.25); }
.band .faq summary::after { border-color: var(--light); }
.band .form .btn { background: var(--blue); color: var(--off); border-color: var(--blue); }
.band .form .btn:hover { background: var(--slate); border-color: var(--slate); }
.founder .photo img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Services: level dividers via subgrid; group icons */
.pillar-group h3.group-title { display: flex; align-items: center; gap: 14px; font-size: 20px; letter-spacing: 0.2em; margin: 0 0 24px; }
.group-icon { display: inline-flex; width: 40px; height: 40px; color: var(--blue); }
.group-icon svg { width: 40px; height: 40px; }
/* Progressive lane shading: Create → Grow → Support */
.pillar-group { padding: 28px 24px 20px; background: #F1F4F6; }
.pillar-group:nth-child(2) { background: #E4EBF0; }
.pillar-group:nth-child(3) { background: #D6E1E9; }
.pillar .price { flex-direction: column; align-items: flex-start; gap: 6px; }
.pillar .price a { white-space: normal; }
@media (min-width: 960px) {
  .pillars { grid-template-rows: auto auto auto; }
  .pillar-group { display: grid; grid-template-rows: subgrid; grid-row: span 3; padding: 32px 28px 28px; }
  .pillar-group:first-child { padding-left: 28px; }
  .pillar-group:last-child { padding-right: 28px; }
  .pillar-group h3.group-title { margin: 0 0 24px; }
  .pillar { display: flex; flex-direction: column; }
  .pillar .price { margin-top: auto; }
  .pillar:first-of-type { padding-bottom: 28px; }
}

/* Skyline divider */
.skyline { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); color: var(--brass); }
.skyline svg { width: 100%; height: auto; display: block; }
.founder { padding-top: calc(var(--section) * 0.5); }
/* Skyline spacing: equal air above and below, keeping the 1× section rhythm overall */
.areas { padding-bottom: calc(var(--section) * 0.5); }
.skyline { margin-top: 0; margin-bottom: 0; }
.founder { padding-top: calc(var(--section) * 0.5); }
/* Two off-white sections in a row have no background edge to separate them, so tighten the gap */
.section:not(.band) + .section:not(.band) { padding-top: calc(var(--section) * 0.5); }
/* Work groups */
.work-group + .work-group { margin-top: 48px; padding-top: 40px; border-top: 3px double var(--brass); }
.work-group-title { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); margin: 0 0 8px; }
.work-group-intro { color: var(--muted); max-width: 64ch; margin: 0 0 24px; }
/* Skyline inside the service-areas section */
.skyline--inline { max-width: none; padding: 0; margin: 28px 0 8px; }
.areas { padding-bottom: var(--section); }
.founder { padding-top: calc(var(--section) * 0.5); }

/* Inner pages */
.page-hero { padding-top: calc(var(--section) * 0.8); padding-bottom: calc(var(--section) * 0.6); }
.page-hero h1 { max-width: 20ch; }
.checklist { margin: 16px 0 24px; }
.checklist li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(-45deg); }
.band .checklist li::before { border-color: var(--light); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; font-weight: 700; font-size: 18px; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ""; position: absolute; right: 8px; top: 26px; width: 10px; height: 10px; border-right: 1.5px solid var(--blue); border-bottom: 1.5px solid var(--blue); transform: rotate(45deg); }
.faq-list details[open] summary::after { transform: rotate(-135deg); top: 30px; }
.faq-list details p { margin: 0 0 18px; color: var(--muted); max-width: 64ch; }
.price-grid { display: grid; gap: 24px; margin-top: 32px; }
.price-block { padding: 28px; border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; }
.price-block h3 { margin-bottom: 4px; }
.price-from { font-family: var(--display); font-size: 28px; color: var(--blue); margin: 0 0 12px; }
.price-block .meta { margin-top: auto; }
@media (min-width: 640px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.two-col { display: grid; gap: 32px; }
@media (min-width: 960px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; } .two-col--narrow { grid-template-columns: 2fr 3fr; } }
.prose { max-width: 66ch; }
.prose h2 { margin-top: 1.4em; }
.contact-card { padding: 28px; border: 1px solid var(--line); background: #fff; }
.contact-card p { margin: 0 0 10px; }
.thanks { min-height: 50vh; display: grid; place-items: center; text-align: center; }

/* Form controls: select and textarea match inputs */
.form select, .form textarea { width: 100%; padding: 12px 14px; font: inherit; font-size: 16px; color: var(--slate); background: #fff; border: 1px solid var(--line); border-radius: 0; margin-bottom: 16px; }
.form select { min-height: 48px; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%233E6484' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.form select:focus, .form textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 2px rgba(62,100,132,.2); }
.form ::placeholder { color: #8A96A0; opacity: 1; }
