/* ============================================================
   Direction 3 — CITY MISSION
   Modern, energetic, young church. Cobalt + ink + bright white.
   Bold grid, oversized type, kinetic.
   ============================================================ */
:root {
  --bg: #F4F3EF;
  --ink: #14151A;
  --ink-2: #1C1E26;
  --paper: #FFFFFF;
  --muted: #5C5E68;
  --line: #E2E0D8;
  --blue: #2A43FF;
  --blue-d: #1A2ED6;
  --lime: #C8FF4D;
  --coral: #FF5A3C;
  --serif: "Archivo", system-ui, sans-serif;
  --sans: "Archivo", system-ui, sans-serif;
  --maxw: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--bg); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -.02em; }
.huge { font-weight: 700; text-transform: uppercase; }
.kicker { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 9px; }
.kicker::before { content: ""; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }
.tag-pill { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 6px 12px; border-radius: 999px; background: var(--ink); color: #fff; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 700; font-size: 15px; padding: 15px 26px; border-radius: 999px; cursor: pointer; border: 2px solid var(--ink); transition: .22s ease; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-d); border-color: var(--blue-d); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-lime { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.btn-lime:hover { transform: translateY(-2px); }

/* header */
.header { position: sticky; top: 0; z-index: 60; background: var(--bg); transition: .3s; border-bottom: 2px solid transparent; }
.header.is-scrolled { border-color: var(--ink); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: -.01em; }
.brand .mk { width: 38px; height: 38px; background: var(--blue); border-radius: 10px; display: grid; place-items: center; color: #fff; flex: none; transform: rotate(-4deg); }
.brand .mk svg { width: 20px; height: 20px; }
.brand-logo { height: 48px; width: auto; display: block; }
.brand-foot { display: inline-block; }
.brand-foot img { height: 58px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 600; font-size: 15px; transition: .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn-primary { padding: 9px 22px; font-size: 14px; }
.lang { font-family: var(--sans); font-weight: 700; font-size: 13px; cursor: pointer; background: var(--ink); color: #fff; border: none; padding: 9px 13px; border-radius: 8px; transition: .2s; }
.lang:hover { background: var(--blue); }
.burger { display: none; width: 46px; height: 46px; background: var(--ink); border: none; border-radius: 10px; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2.5px; background: #fff; border-radius: 2px; transition: .25s; }
.burger span:nth-child(1){ top: 16px; } .burger span:nth-child(2){ top: 22px; } .burger span:nth-child(3){ top: 28px; }
.burger.is-active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.burger.is-active span:nth-child(2){ opacity: 0; }
.burger.is-active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 80px; right: 0; bottom: 0; z-index: 58; width: min(80vw, 310px); background: var(--bg); color: var(--ink); padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 2px; transform: translateX(105%); transition: transform .32s cubic-bezier(.4,0,.2,1); visibility: hidden; box-shadow: -18px 0 46px rgba(20,21,26,.22); border-left: 2px solid var(--ink); overflow-y: auto; }
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-weight: 700; font-size: 21px; text-transform: uppercase; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu .btn { margin-top: 20px; justify-content: center; background: var(--blue); border-color: var(--blue); color: #fff; }
.mobile-menu .lang-drawer { align-self: flex-start; margin-top: 22px; background: var(--ink); color: #fff; border: none; padding: 11px 18px; border-radius: 999px; font-family: var(--sans); font-weight: 700; font-size: 14px; cursor: pointer; }
.menu-backdrop { position: fixed; inset: 0; z-index: 56; background: rgba(20,21,26,.5); opacity: 0; visibility: hidden; transition: opacity .3s ease; }
body.menu-open .menu-backdrop { opacity: 1; visibility: visible; }

/* placeholder */
.ph { position: relative; overflow: hidden; background: var(--ink); border-radius: 16px; }
.ph::after { content:""; position:absolute; inset:0; opacity:.35; mix-blend-mode:overlay; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); }
.ph .ph-icon { position:absolute; inset:0; display:grid; place-items:center; color:rgba(255,255,255,.55); }
.ph .ph-icon svg { width: 56px; height: 56px; }
.ph .ph-label { position:absolute; left:16px; top:16px; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#fff; background:rgba(0,0,0,.35); padding:6px 11px; border-radius:999px; }
.ph.ph-photo { background: var(--ink); }
.ph.ph-photo::after { display: none; }
.ph-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual .ph.big.ph-photo { aspect-ratio: 16/9; }
.hero-visual .ph.big.ph-photo img { object-position: center bottom; }
.hero-visual .ph.small.ph-photo { padding: 0; }
.ph.ph-photo.small::after { display: block; content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.32) 44%, rgba(0,0,0,0) 72%); }
.ph-cap { position: relative; z-index: 2; margin-top: auto; padding: 26px; color: #fff; }
.ph-blue { background: linear-gradient(140deg, #2A43FF 0%, #0F1B8C 100%); }
.ph-ink { background: linear-gradient(140deg, #2A2D3A 0%, #101218 100%); }
.ph-coral { background: linear-gradient(140deg, #FF7A4D 0%, #E03A1F 100%); }
.ph-lime { background: linear-gradient(140deg, #6E7B2E 0%, #2E3A12 100%); }

/* hero */
.hero { padding: 60px 0 0; }
.hero-top { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.hero h1 { font-size: clamp(54px, 11vw, 150px); text-transform: uppercase; font-weight: 700; }
.hero h1 .out { -webkit-text-stroke: 2px var(--ink); color: transparent; }
.hero h1 .bl { color: var(--blue); }
.hero-side { max-width: 300px; text-align: left; padding-bottom: 12px; }
.hero-side p { color: var(--muted); font-size: 16px; margin: 0 0 18px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { margin-top: 36px; display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.hero-visual .ph.big { aspect-ratio: 21/9; }
.hero-visual .ph.small { aspect-ratio: auto; min-height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; color: #fff; }
.hero-visual .ph.small h3 { font-size: 26px; text-transform: uppercase; }
.hero-visual .ph.small p { font-size: 14px; color: rgba(255,255,255,.8); margin: 8px 0 0; }

/* marquee service bar */
.marquee { background: var(--ink); color: #fff; overflow: hidden; margin-top: 40px; border-top: 2px solid var(--ink); }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; padding: 18px 0; animation: scroll 28s linear infinite; }
.marquee-track span { font-family: var(--serif); font-weight: 600; font-size: 22px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 16px; }
.marquee-track span::after { content: "✦"; color: var(--lime); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* sections */
section { padding: 100px 0; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(36px, 5.5vw, 76px); text-transform: uppercase; font-weight: 700; }
.sec-head p { color: var(--muted); max-width: 36ch; }

/* about */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; margin-top: 50px; }
.about-grid .ph { aspect-ratio: 4/3; }
.about-text p { font-size: 19px; color: var(--muted); margin: 0 0 18px; }
.about-text .verse { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--ink); text-transform: uppercase; margin-top: 10px; line-height: 1.05; }
.about-text .verse b { color: var(--blue); }

/* pillars */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 50px; }
.pillar.wide { grid-column: 1 / -1; }
.kids { margin-top: 18px; background: var(--blue); color: #fff; border-radius: 18px; padding: 36px; }
.kids .kicker { color: var(--lime); } .kids .kicker::before { background: var(--lime); }
.kids h3 { font-size: clamp(22px, 2.4vw, 30px); text-transform: uppercase; margin: 12px 0 0; color: #fff; line-height: 1.18; }
.kids-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.kids-item { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; background: rgba(255,255,255,.1); border-radius: 14px; padding: 24px; }
.kids-item .pic { width: 54px; height: 54px; background: #fff; color: var(--blue); border-radius: 13px; display: grid; place-items: center; flex: none; }
.kids-item .pic svg { width: 28px; height: 28px; }
.kids-item h4 { font-family: var(--serif); font-size: 19px; font-weight: 700; text-transform: uppercase; margin: 0; color: #fff; }
.kids-item .when { display: inline-block; margin-top: 6px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); background: var(--lime); padding: 4px 10px; border-radius: 999px; }
.kids-item p { margin: 12px 0 0; color: rgba(255,255,255,.82); font-size: 14.5px; }
@media (max-width: 760px) { .kids-grid { grid-template-columns: 1fr; } .kids { padding: 28px; } }
.yl-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 700; font-size: 15px; color: var(--blue); transition: .2s; }
.yl-link svg { width: 18px; height: 18px; }
.yl-link:hover { color: var(--blue-d); }
.pillar:hover .yl-link { color: #fff; }
.pillar { background: var(--paper); border: 2px solid var(--ink); border-radius: 18px; padding: 32px; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; transition: .22s; }
.pillar:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--ink); }
.pillar:hover .num, .pillar:hover p { color: rgba(255,255,255,.85); }
.pillar:hover .pic { background: #fff; color: var(--blue); }
.pillar .pic { width: 58px; height: 58px; background: var(--ink); color: #fff; border-radius: 14px; display: grid; place-items: center; flex: none; transition: .22s; }
.pillar .pic svg { width: 30px; height: 30px; }
.pillar .num { font-family: var(--serif); font-size: 13px; font-weight: 700; color: var(--blue); }
.pillar h3 { font-size: 26px; text-transform: uppercase; margin: 8px 0 0; }
.pillar p { color: var(--muted); font-size: 15px; margin-top: 10px; transition: .22s; }

/* media hub */
.media { background: var(--ink); color: #fff; border-radius: 36px; margin: 0 16px; }
.media .sec-head h2 { color: #fff; }
.media .sec-head p { color: rgba(255,255,255,.65); }
.media .kicker { color: var(--lime); } .media .kicker::before { background: var(--lime); }
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; }
.media-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 26px; min-height: 240px; display: flex; flex-direction: column; transition: .22s; }
.media-card:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-6px); }
.media-card .ic { width: 52px; height: 52px; border-radius: 13px; background: rgba(255,255,255,.12); display: grid; place-items: center; margin-bottom: auto; }
.media-card:hover .ic { background: #fff; color: var(--blue); }
.media-card .ic svg { width: 26px; height: 26px; }
.media-card h3 { font-size: 22px; text-transform: uppercase; margin-top: 22px; color: #fff; }
.media-card p { font-size: 13.5px; color: rgba(255,255,255,.65); margin: 8px 0 14px; }
.media-card:hover p { color: rgba(255,255,255,.9); }
.media-card .go { font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; }
.media-card .go svg { width: 16px; height: 16px; transition: .2s; }
.media-card:hover .go svg { transform: translateX(4px); }

/* blog */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.post { background: var(--paper); border: 2px solid var(--ink); border-radius: 18px; overflow: hidden; transition: .22s; }
.post:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--blue); }
.post .ph { border-radius: 0; aspect-ratio: 16/10; }
.post-body { padding: 24px; }
.post h3 { font-size: 21px; text-transform: uppercase; margin: 14px 0 0; }
.post p { color: var(--muted); font-size: 14.5px; margin-top: 10px; }
.blog-foot { margin-top: 40px; }

/* map / location */
.map-embed { margin-top: 44px; border: 2px solid var(--ink); border-radius: 24px; overflow: hidden; }
.map-embed iframe { display: block; width: 100%; height: 460px; border: 0; }
@media (max-width: 560px) { .map-embed iframe { height: 340px; } }

/* give page */
.give-page { padding-top: 60px; }
.give-page .lead { max-width: 60ch; color: var(--muted); font-size: 20px; margin: 18px 0 0; }
.give-verse { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-top: 26px; max-width: 48ch; line-height: 1.2; }
.bank-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 46px; }
.bank-card { background: var(--paper); border: 2px solid var(--ink); border-radius: 18px; padding: 30px; }
.bank-card.feature { grid-column: 1 / -1; }
.bank-card > .kicker { margin-bottom: 6px; }
.bank-rows { margin-top: 14px; }
.bank-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; padding: 13px 0; border-top: 1px solid var(--line); }
.bank-row:first-child { border-top: none; padding-top: 4px; }
.bk-label { flex: none; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding-top: 3px; }
.bk-val { font-weight: 600; text-align: right; word-break: break-word; display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 8px 12px; }
.bk-val.mono { font-family: var(--serif); letter-spacing: .01em; }
.copy-btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; padding: 6px 12px; border-radius: 999px; border: 2px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; transition: .18s; }
.copy-btn:hover { background: var(--ink); color: #fff; }
.copy-btn.is-copied { background: var(--blue); border-color: var(--blue); color: #fff; }
.give-online { margin-top: 56px; }
.give-online .give-card { text-align: center; }
.give-online .give-card p { max-width: 52ch; margin-bottom: 26px; }
.amount-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 28px; }
.amt { font-family: var(--sans); font-weight: 700; font-size: 16px; padding: 12px 24px; border-radius: 999px; border: 2px solid rgba(255,255,255,.5); background: transparent; color: #fff; cursor: pointer; transition: .18s; }
.amt:hover { border-color: #fff; }
.amt.is-active { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.amt-custom { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.5); border-radius: 999px; padding: 0 18px; transition: .18s; }
.amt-custom:focus-within { border-color: var(--lime); }
.amt-custom input { width: 116px; background: transparent; border: none; outline: none; color: #fff; font-family: var(--sans); font-weight: 700; font-size: 16px; padding: 11px 0; }
.amt-custom input::placeholder { color: rgba(255,255,255,.7); font-weight: 600; }
.amt-custom input::-webkit-outer-spin-button, .amt-custom input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.amt-custom input[type=number] { -moz-appearance: textfield; }
.amt-custom span { color: rgba(255,255,255,.85); font-weight: 700; font-size: 15px; }
.give-note { margin-top: 18px; color: var(--muted); font-size: 14px; }

/* give */
.give { text-align: center; }
.give-card { background: var(--blue); color: #fff; border-radius: 36px; padding: 80px 40px; }
.give-card h2 { font-size: clamp(36px, 6vw, 80px); text-transform: uppercase; font-weight: 700; margin: 16px 0; }
.give-card p { max-width: 50ch; margin: 0 auto 30px; font-size: 19px; color: rgba(255,255,255,.85); }
.give-card .kicker { color: var(--lime); } .give-card .kicker::before { background: var(--lime); }

/* footer */
.footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 90px 0 36px; margin-top: 30px; }
.foot-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.14); flex-wrap: wrap; }
.foot-cta h2 { font-size: clamp(32px,5vw,64px); text-transform: uppercase; color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-top: 50px; }
.foot-brand .brand { color: #fff; }
.foot-brand p { margin-top: 16px; color: rgba(255,255,255,.55); max-width: 32ch; }
.foot-socials { display: flex; gap: 10px; margin-top: 20px; }
.foot-socials a { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .2s; }
.foot-socials a:hover { background: var(--blue); transform: translateY(-3px); }
.foot-socials svg { width: 20px; height: 20px; color: #fff; }
.foot-col h4 { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; color: var(--lime); margin: 0 0 16px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a, .foot-col li { color: rgba(255,255,255,.7); font-size: 15px; }
.foot-col a:hover { color: #fff; }
.foot-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; }

/* about page */
.page-hero { padding: 70px 0 0; }
.page-hero h1 { font-size: clamp(48px,9vw,120px); text-transform: uppercase; font-weight: 700; margin: 18px 0; }
.page-hero h1 .bl { color: var(--blue); }
.page-hero .lead { max-width: 54ch; color: var(--muted); font-size: 20px; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 50px; }
.value { background: var(--paper); border: 2px solid var(--ink); border-radius: 18px; padding: 32px; transition: .22s; }
.value:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--coral); }
.value .vn { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--blue); }
.value h3 { font-size: 24px; text-transform: uppercase; margin: 6px 0 0; }
.value p { color: var(--muted); font-size: 15px; margin-top: 10px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s; } .reveal[data-d="2"]{ transition-delay:.16s; } .reveal[data-d="3"]{ transition-delay:.24s; }

@media (max-width: 960px) {
  .nav-links { display: none; } .burger { display: block; } .lang { display: none; }
  .hero-top { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: 1fr; }
  .about-grid, .pillars, .media-grid, .posts, .values, .foot-grid, .bank-grid { grid-template-columns: 1fr; }
  .media-grid { gap: 14px; } .media { margin: 0; border-radius: 24px; }
}

/* tablet/phone: stack bank rows */
@media (max-width: 760px) {
  .bank-row { flex-direction: column; align-items: stretch; gap: 6px; padding: 14px 0; }
  .bk-label { padding-top: 0; }
  .bk-val { text-align: left; justify-content: flex-start; }
}

@media (max-width: 560px) {
  section { padding: 70px 0; }
  .wrap { padding: 0 20px; }
  /* icons on top, centered text below — symmetric on phones */
  .pillar { grid-template-columns: 1fr; gap: 14px; }
  .kids-item { grid-template-columns: 1fr; gap: 12px; }
  /* keep long one-word headings inside the screen */
  .page-hero h1 { font-size: clamp(34px, 10vw, 56px); }
  .hero h1 { font-size: clamp(44px, 13vw, 90px); }
  h1, h2, h3, .sec-head h2 { overflow-wrap: break-word; }
}
