/* ═══════════════════════════════════════════════════════════════
   املاک شهریار — صفحه لندینگ عمومی
   نظام طراحی: Luxury · Minimal · Editorial · Persian/RTL
   رنگ: Deep Royal Emerald + Champagne Gold + Warm Off-White
   Mobile-First — پایه برای 360px، گسترش با clamp() و breakpoint
   ═══════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* ── پالت ── */
  --emerald:      #0b3d2e;
  --emerald-2:    #114a38;
  --emerald-deep: #072a20;
  --gold:         #c9a961;
  --gold-soft:    #e3d3a4;
  --bg:           #faf7ef;
  --bg-2:         #f3eee0;
  --card:         #ffffff;
  --text:         #1d1c18;
  --muted:        #6f6a5c;
  --border:       #e9e1cd;
  --line-on-dark: rgba(255,255,255,.14);

  /* ── تایپوگرافی سیال ── */
  --fs-hero:    clamp(1.9rem, 5.4vw + .4rem, 3.4rem);
  --fs-h2:      clamp(1.4rem, 3.2vw + .4rem, 2.1rem);
  --fs-h3:      clamp(1.05rem, 1.6vw + .4rem, 1.25rem);
  --fs-body:    clamp(.92rem, .4vw + .8rem, 1rem);
  --fs-small:   .82rem;

  /* ── فاصله‌ها ── */
  --space-section: clamp(48px, 8vw, 96px);
  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 2px 8px rgba(11,61,46,.06), 0 16px 40px -18px rgba(11,61,46,.18);
  --shadow-lift: 0 20px 50px -18px rgba(11,61,46,.32);
  --tap: 46px;

  --star: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpolygon points='20.0,5.0 22.4,14.3 30.6,9.4 25.7,17.6 35.0,20.0 25.7,22.4 30.6,30.6 22.4,25.7 20.0,35.0 17.6,25.7 9.4,30.6 14.3,22.4 5.0,20.0 14.3,17.6 9.4,9.4 17.6,14.3' fill='none' stroke='rgba(201,169,97,0.14)' stroke-width='1'/%3E%3C/svg%3E");
}

body {
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  font-size: var(--fs-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 18px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 2px; border-radius: 6px; }

::selection { background: var(--gold-soft); color: var(--emerald-deep); }

/* ═══════════════════════ دکمه‌ها ═══════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--tap);
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .94rem;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--emerald); color: #fff; box-shadow: 0 10px 24px -10px rgba(11,61,46,.55); }
.btn-primary:hover { background: var(--emerald-2); box-shadow: 0 14px 30px -10px rgba(11,61,46,.6); }
.btn-gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: var(--emerald-deep); box-shadow: 0 10px 24px -10px rgba(201,169,97,.5); }
.btn-gold:hover { filter: brightness(1.04); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); background: #fffdf7; }
.btn-outline-light { background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.14); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 26px; font-size: 1rem; }

/* دسکتاپ: Magnetic hover روی CTAهای اصلی */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover, .btn-gold:hover { transform: translateY(-2px); }
}

/* ═══════════════════════ هدر ═══════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 300;
  background: rgba(250,247,239,.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.02rem; color: var(--emerald); text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-2));
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.nav-desktop { display: none; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.hamburger-btn {
  display: flex; align-items: center; justify-content: center;
  width: var(--tap); height: var(--tap);
  background: transparent; border: 1.5px solid var(--border); border-radius: 10px;
  cursor: pointer;
}
.hamburger-btn svg { width: 20px; height: 20px; }
.header-call-btn { display: none; }

.mobile-menu {
  position: fixed; inset: 64px 0 0 0; z-index: 290;
  background: var(--bg);
  padding: 18px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a {
  display: block; padding: 15px 6px; font-weight: 700; font-size: 1.02rem;
  border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text);
}
.mobile-menu .btn { margin-top: 18px; }

/* ═══════════════════════ Hero ═══════════════════════ */
.hero {
  position: relative;
  background: linear-gradient(175deg, var(--emerald-deep) 0%, var(--emerald) 55%, var(--emerald-2) 100%);
  color: #fff;
  overflow: hidden;
  padding: 34px 0 40px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--star); background-size: 48px 48px;
  opacity: .7;
}
.hero .container { position: relative; display: flex; flex-direction: column; gap: 26px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px; width: fit-content;
  background: rgba(201,169,97,.14); border: 1px solid rgba(201,169,97,.4);
  color: var(--gold-soft); font-size: .78rem; font-weight: 700;
  padding: 6px 13px; border-radius: 99px;
}
.hero h1 {
  font-size: var(--fs-hero); font-weight: 800; line-height: 1.28; letter-spacing: -.01em;
  max-width: 15ch;
}
.hero h1 span { color: var(--gold-soft); }
.hero p.lead { font-size: clamp(.95rem, .6vw + .8rem, 1.12rem); color: rgba(255,255,255,.82); max-width: 46ch; }
.hero-ctas { display: flex; flex-direction: column; gap: 10px; }
.hero-ctas .btn { width: 100%; }
.hero-trustline { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: rgba(255,255,255,.65); }
.hero-trustline b { color: var(--gold-soft); font-weight: 700; }

.hero-visual { position: relative; }
.hero-art { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }

/* ═══════════════════════ عنوان بخش ═══════════════════════ */
.section { padding: var(--space-section) 0; }
.section-head { text-align: center; max-width: 46ch; margin: 0 auto clamp(24px,4vw,40px); }
.section-eyebrow { color: var(--gold); font-weight: 800; font-size: .78rem; letter-spacing: .04em; margin-bottom: 8px; display: block; }
.section-head h2 { font-size: var(--fs-h2); font-weight: 800; color: var(--emerald-deep); line-height: 1.4; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: .95rem; }
.section--dark .section-head h2 { color: #fff; }
.section--dark .section-head p { color: rgba(255,255,255,.7); }

/* ═══════════════════════ دسته‌بندی خدمات ═══════════════════════ */
.categories-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.category-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--gold-soft); }
.category-icon {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 14px;
  background: linear-gradient(135deg, var(--bg-2), #fff);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.category-card h3 { font-size: .98rem; font-weight: 800; margin-bottom: 5px; }
.category-card p { font-size: .8rem; color: var(--muted); margin-bottom: 10px; line-height: 1.6; }
.category-card .cta-mini { font-size: .8rem; font-weight: 700; color: var(--emerald); display: inline-flex; align-items: center; gap: 4px; }

/* ═══════════════════════ جستجوی ملک ═══════════════════════ */
.search-panel {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 16px; box-shadow: var(--shadow-card);
}
.search-grid { display: grid; grid-template-columns: 1fr; gap: 13px; }
.field label { display: block; font-size: .8rem; font-weight: 700; color: var(--emerald); margin-bottom: 6px; }
.field select, .field input {
  width: 100%; min-height: var(--tap);
  padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: .95rem; background: #fff; color: var(--text);
}
.field select:focus, .field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3.5px rgba(201,169,97,.18); }
.budget-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.search-panel .btn { margin-top: 4px; }
.search-hint { font-size: .78rem; color: var(--muted); margin-top: 10px; text-align: center; }

/* ═══════════════════════ کارت ملک ═══════════════════════ */
.rail {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 4px 2px 14px; margin: 0 -18px; padding-inline: 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

.property-card {
  flex: 0 0 82%; max-width: 320px; scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.property-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.property-media { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--bg-2), var(--border)); overflow: hidden; }
.property-media img { width: 100%; height: 100%; object-fit: cover; }
.property-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--gold); opacity: .55; }
.property-badge {
  position: absolute; top: 10px; inset-inline-start: 10px;
  background: var(--emerald); color: #fff; font-size: .72rem; font-weight: 800;
  padding: 4px 11px; border-radius: 99px;
}
.property-badge.rent { background: var(--gold); color: var(--emerald-deep); }
.property-body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.property-type { font-size: .78rem; color: var(--muted); font-weight: 600; }
.property-body h3 { font-size: 1rem; font-weight: 800; color: var(--text); }
.property-stats { display: flex; flex-wrap: wrap; gap: 10px; font-size: .78rem; color: var(--muted); }
.property-stats b { color: var(--text); }
.property-price { margin-top: auto; font-weight: 800; color: var(--emerald); font-size: .98rem; padding-top: 8px; border-top: 1px dashed var(--border); }
.property-price small { display: block; font-weight: 500; color: var(--muted); font-size: .74rem; }
.property-actions { display: flex; gap: 8px; margin-top: 2px; }
.property-actions .btn { flex: 1; padding: 10px; font-size: .82rem; }

.rail-empty, .rail-loading {
  width: 100%; text-align: center; padding: 40px 16px; color: var(--muted); font-size: .9rem;
}
.skeleton { background: linear-gradient(90deg, var(--bg-2) 25%, #fff 37%, var(--bg-2) 63%); background-size: 400% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { from { background-position: 100% 0; } to { background-position: 0 0; } }

/* ═══════════════════════ بخش صنعتی ═══════════════════════ */
.section--industrial {
  background:
    var(--star),
    linear-gradient(160deg, var(--emerald-deep), #061a14);
  background-size: 48px 48px, cover;
  color: #fff;
}
.section--industrial .property-card { background: rgba(255,255,255,.04); border-color: var(--line-on-dark); }
.section--industrial .property-body h3, .section--industrial .property-type { color: #fff; }
.section--industrial .property-stats { color: rgba(255,255,255,.65); }
.section--industrial .property-stats b { color: #fff; }
.section--industrial .property-price { color: var(--gold-soft); border-top-color: var(--line-on-dark); }
.section--industrial .property-price small { color: rgba(255,255,255,.55); }
.section--industrial .rail-empty { color: rgba(255,255,255,.6); }

/* ═══════════════════════ چرا ما ═══════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px;
}
.why-icon {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-2));
  color: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.why-item h3 { font-size: .95rem; font-weight: 800; margin-bottom: 4px; }
.why-item p { font-size: .84rem; color: var(--muted); }

/* ═══════════════════════ CTA میانی ═══════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-2));
  color: #fff; border-radius: var(--radius); position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: var(--star); background-size: 48px 48px; opacity: .6; }
.cta-inner { position: relative; padding: clamp(28px,5vw,48px) clamp(18px,4vw,44px); display: grid; gap: 26px; }
.cta-copy h2 { font-size: var(--fs-h2); font-weight: 800; margin-bottom: 10px; }
.cta-copy p { color: rgba(255,255,255,.8); max-width: 50ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.lead-form {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm); padding: 18px; display: grid; gap: 12px;
  backdrop-filter: blur(6px);
}
.lead-form .field label { color: var(--gold-soft); }
.lead-form .field select, .lead-form .field input, .lead-form .field textarea {
  background: rgba(255,255,255,.94); border: 1.5px solid transparent;
}
.lead-form textarea { min-height: 80px; resize: vertical; font-family: inherit; padding: 10px 13px; border-radius: 10px; width: 100%; font-size: .92rem; }
.lead-form-msg { font-size: .85rem; padding: 10px 12px; border-radius: 10px; display: none; }
.lead-form-msg.show { display: block; }
.lead-form-msg.ok { background: rgba(255,255,255,.92); color: var(--emerald); }
.lead-form-msg.err { background: #fbeae6; color: #8a3223; }

/* ═══════════════════════ تماس ═══════════════════════ */
.contact-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 22px 18px; display: grid; gap: 16px;
}
.contact-row { display: flex; align-items: flex-start; gap: 12px; }
.contact-row .ic {
  flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-row div b { display: block; font-size: .78rem; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.contact-row div span { font-weight: 700; font-size: .95rem; }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-actions .btn { flex: 1; }
.map-frame {
  border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 16/9; background: var(--bg-2);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ═══════════════════════ فوتر ═══════════════════════ */
.site-footer { background: var(--emerald-deep); color: rgba(255,255,255,.72); padding: 34px 0 calc(20px + env(safe-area-inset-bottom)); font-size: .84rem; }
.footer-top { display: grid; gap: 22px; margin-bottom: 22px; }
.footer-brand { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 8px; }
.footer-brand .logo-mark { background: rgba(255,255,255,.1); color: var(--gold-soft); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { text-decoration: none; color: inherit; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; font-size: .78rem; }
.footer-bottom a { color: var(--gold-soft); text-decoration: none; font-weight: 700; }

/* ═══════════════════════ نوار پایین موبایل ═══════════════════════ */
.mobile-sticky-bar {
  position: fixed; bottom: 0; inset-inline: 0; z-index: 250;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(250,247,239,.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px -12px rgba(11,61,46,.25);
}
.mobile-sticky-bar a, .mobile-sticky-bar button {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: var(--tap);
  background: none; border: none; text-decoration: none; color: var(--text);
  font-size: .72rem; font-weight: 700; cursor: pointer;
}
.mobile-sticky-bar .ic { font-size: 19px; }
.mobile-sticky-bar .call-action { color: var(--emerald); }

/* ═══════════════════════ مودال جزئیات ملک ═══════════════════════ */
.pmodal-overlay {
  position: fixed; inset: 0; z-index: 400; background: rgba(7,26,20,.62);
  display: flex; align-items: flex-end; justify-content: center; padding: 0;
  backdrop-filter: blur(2px);
}
.pmodal-box {
  background: var(--card); width: 100%; max-width: 520px; max-height: 88vh; overflow-y: auto;
  border-radius: 20px 20px 0 0; padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
  animation: pmodal-up .2s ease;
}
@keyframes pmodal-up { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.pmodal-close { float: left; background: var(--bg-2); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 15px; }
.pmodal-gallery { display: flex; gap: 8px; overflow-x: auto; margin: 10px 0 14px; }
.pmodal-gallery img { width: 130px; height: 100px; object-fit: cover; border-radius: 10px; flex: none; }
.pmodal-box h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.pmodal-box .property-stats { margin: 10px 0; }
.pmodal-facilities { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.pmodal-facilities span { background: var(--bg-2); border: 1px solid var(--border); font-size: .76rem; padding: 4px 10px; border-radius: 99px; }
.pmodal-actions { display: flex; gap: 8px; margin-top: 14px; }
.pmodal-actions .btn { flex: 1; }

@media (min-width: 640px) {
  .pmodal-overlay { align-items: center; padding: 16px; }
  .pmodal-box { border-radius: 20px; }
}

/* ═══════════════════════ Reveal on scroll ═══════════════════════ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ═══════════════════════ Breakpoints ═══════════════════════ */
@media (min-width: 480px) {
  .categories-grid { gap: 16px; }
  .budget-row { gap: 14px; }
}

@media (min-width: 640px) {
  .search-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .property-card { flex: 0 0 47%; }
}

@media (min-width: 768px) {
  .container { padding: 0 28px; }
  .hero { padding: 56px 0 70px; }
  .hero .container { flex-direction: row; align-items: center; }
  .hero-copy { flex: 1 1 54%; }
  .hero-visual { flex: 1 1 40%; }
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }
  .cta-inner { grid-template-columns: 1.1fr 1fr; align-items: center; }
  .contact-card { grid-template-columns: 1fr 1fr; align-items: start; }
  .contact-card > .btn-block-wrap { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .property-card { flex: 0 0 32%; }
}

@media (min-width: 1024px) {
  .site-header .container { height: 76px; }
  .nav-desktop { display: flex; align-items: center; gap: 28px; }
  .nav-desktop a { text-decoration: none; color: var(--text); font-weight: 700; font-size: .92rem; transition: color .15s; }
  .nav-desktop a:hover { color: var(--emerald); }
  .hamburger-btn { display: none; }
  .header-call-btn { display: inline-flex; }
  .mobile-sticky-bar { display: none; }
  .section { padding: calc(var(--space-section) + 12px) 0; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .search-grid { grid-template-columns: repeat(4, 1fr); align-items: end; }
  .search-panel { padding: 26px; }
  .rail { overflow: visible; flex-wrap: wrap; margin: 0; padding: 0; }
  .property-card { flex: 0 0 calc(25% - 15px); max-width: none; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  body { padding-bottom: 0; }
}

@media (min-width: 1280px) {
  .hero h1 { max-width: 17ch; }
}
