/* ============================================
   ARVON MEDIA — Global Styles
   Matte Black #0B0B0B | White #FFF | Gold #D4AF37
   ============================================ */

:root {
  --black: #0B0B0B;
  --black-2: #111111;
  --black-3: #161616;
  --white: #FFFFFF;
  --gold: #D4AF37;
  --gold-light: #E8CD6E;
  --gold-dim: rgba(212, 175, 55, 0.35);
  --grey: #9a9a9a;
  --grey-dark: #2a2a2a;
  --font-main: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-alt: 'Space Grotesk', 'Montserrat', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--black); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}
.header.scrolled {
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 54px; width: auto; transition: height 0.4s var(--ease); }
.header.scrolled .logo-link img { height: 44px; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a:hover::after, .nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav .nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 24px;
  color: var(--gold);
  transition: all 0.35s var(--ease);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.35);
}

/* Mobile nav */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px; height: 22px;
  position: relative;
  z-index: 102;
}
.burger span {
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: var(--white);
  transition: all 0.35s var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); background: var(--gold); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); background: var(--gold); }

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 11, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: 101;
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav a { font-size: 16px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(11,11,11,0.85) 75%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 140px 0 80px;
}
.hero-kicker {
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-kicker::before {
  content: '';
  width: 46px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 14ch;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  margin-top: 28px;
  max-width: 520px;
  font-size: 17px;
  font-weight: 300;
  color: var(--grey);
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 200px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(212,175,55,0.09), transparent),
    var(--black);
}
.page-hero .hero-kicker { margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.page-hero p {
  margin-top: 20px;
  max-width: 560px;
  color: var(--grey);
  font-weight: 300;
  font-size: 17px;
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; position: relative; }
.section-dark { background: var(--black-2); }

.section-head { margin-bottom: 64px; }
.section-head .kicker {
  font-family: var(--font-alt);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-head .kicker::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.section-head p {
  margin-top: 18px;
  max-width: 560px;
  color: var(--grey);
  font-weight: 300;
}
.section-head.center { text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }
.section-head.center h2, .section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Cards grid ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  perspective: 1200px;
}
.card {
  background: linear-gradient(160deg, var(--black-3), var(--black-2));
  border: 1px solid var(--grey-dark);
  padding: 42px 34px;
  position: relative;
  transition: border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover { border-color: var(--gold-dim); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
  margin-bottom: 28px;
  color: var(--gold);
  transform: translateZ(30px);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  transform: translateZ(20px);
}
.card p {
  font-size: 14.5px;
  color: var(--grey);
  font-weight: 300;
  transform: translateZ(10px);
}
.card .card-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.card .card-link span { transition: transform 0.3s var(--ease); display: inline-block; margin-left: 6px; }
.card:hover .card-link span { transform: translateX(6px); }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat h3 {
  font-family: var(--font-alt);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
}
.stat p {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 6px;
}

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--grey-dark);
}
.service-row:last-child { border-bottom: none; }
.service-row .num {
  font-family: var(--font-alt);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.service-row h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.service-row p { color: var(--grey); font-weight: 300; }
.service-row ul {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.service-row ul li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #cfcfcf;
}
.service-row ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 1px;
  background: var(--gold);
}
.service-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--black-3), var(--black-2));
  border: 1px solid var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.12), transparent 60%);
}
.service-visual svg { width: 34%; height: auto; color: var(--gold); opacity: 0.9; position: relative; z-index: 1; }
.service-row:nth-child(even) .service-visual { order: -1; }
@media (max-width: 820px) {
  .service-row { grid-template-columns: 1fr; gap: 36px; }
  .service-row:nth-child(even) .service-visual { order: 0; }
}

/* ---------- Values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.value {
  border: 1px solid var(--grey-dark);
  padding: 36px 30px;
  background: var(--black-2);
  transition: border-color 0.4s;
}
.value:hover { border-color: var(--gold-dim); }
.value .v-num {
  font-family: var(--font-alt);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.value h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.value p { font-size: 14px; color: var(--grey); font-weight: 300; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; counter-reset: step; }
.step {
  padding: 34px 28px;
  border-top: 2px solid var(--grey-dark);
  transition: border-color 0.4s;
}
.step:hover { border-top-color: var(--gold); }
.step .s-num {
  font-family: var(--font-alt);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 18px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.02em; }
.step p { font-size: 14px; color: var(--grey); font-weight: 300; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 50% 100%, rgba(212,175,55,0.12), transparent),
    var(--black-2);
  border-top: 1px solid var(--grey-dark);
  border-bottom: 1px solid var(--grey-dark);
}
.cta-band h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 21ch;
  margin: 0 auto;
}
.cta-band h2 .gold { color: var(--gold); }
.cta-band p { margin: 22px auto 40px; color: var(--grey); max-width: 480px; font-weight: 300; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.book-card {
  border: 1px solid var(--gold-dim);
  background: linear-gradient(150deg, rgba(212,175,55,0.08), var(--black-2));
  padding: 32px 30px;
  margin-bottom: 26px;
}
.book-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.book-card p { font-size: 14px; color: var(--grey); font-weight: 300; margin-bottom: 22px; }
.book-card .btn { width: 100%; text-align: center; }

/* Inline form success message */
.form-success {
  text-align: center;
  padding: 40px 10px;
  animation: successIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes successIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-success .fs-check {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  color: var(--gold);
}
.form-success .fs-check svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 24px; font-weight: 800; }
.form-success h3 span { color: var(--gold); }
.form-success p { font-size: 14.5px; color: var(--grey); font-weight: 300; margin-top: 12px; max-width: 340px; margin-left: auto; margin-right: auto; }

/* Thanks page */
.thanks-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(212,175,55,0.1), transparent), var(--black);
}
.thanks-wrap .check {
  width: 74px; height: 74px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 34px;
  color: var(--gold);
}
.thanks-wrap .check svg { width: 32px; height: 32px; }
.thanks-wrap h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
.thanks-wrap h1 .gold { color: var(--gold); }
.thanks-wrap p { color: var(--grey); font-weight: 300; max-width: 440px; margin: 18px auto 38px; }

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--grey-dark);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .ci-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-item .ci-icon svg { width: 20px; height: 20px; }
.contact-item h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-item a.big, .contact-item p.big {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
.contact-item a.big:hover { color: var(--gold); }

.form {
  background: var(--black-2);
  border: 1px solid var(--grey-dark);
  padding: 46px 42px;
}
.form h3 { font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.form > p { font-size: 14px; color: var(--grey); margin-bottom: 32px; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .form { padding: 34px 24px; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--grey-dark);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.form .btn { width: 100%; margin-top: 8px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--grey-dark);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 56px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand img { height: 74px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--grey); font-weight: 300; max-width: 300px; }
.footer h4 {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 700;
}
.footer-links { list-style: none; display: grid; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; display: grid; gap: 14px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--grey); }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-contact a { color: var(--grey); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--grey-dark);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #6c6c6c;
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: all 0.35s var(--ease);
}
.socials a svg { width: 17px; height: 17px; }
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   Mobile enhancements
   ============================================ */

/* Modern viewport units — fixes iOS address-bar jump */
@supports (height: 100svh) {
  .hero { min-height: 100svh; }
}

@media (max-width: 860px) {
  .section { padding: 74px 0; }
  .section-head { margin-bottom: 44px; }
  .page-hero { padding: 150px 0 64px; }
  .hero-content { padding: 130px 0 110px; }
  .service-row { padding: 56px 0; }
  .cta-band { padding: 84px 0; }
  .footer { padding-top: 54px; }
  .footer-brand img { height: 62px; }
}

@media (max-width: 700px) {
  #hero-canvas { opacity: 0.55; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .container { width: 92%; }

  /* Full-width, tap-friendly buttons */
  .hero-actions { flex-direction: column; gap: 14px; }
  .hero-actions .btn, .cta-band .btn { width: 100%; text-align: center; }
  .btn { padding: 17px 32px; }

  .hero p { font-size: 15.5px; }
  .hero-scroll { display: none; }

  .cards { gap: 16px; }
  .card { padding: 32px 26px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }

  .service-row ul li { font-size: 14px; }
  .service-visual { aspect-ratio: 16/10; }
  .service-visual svg { width: 26%; }

  .steps, .values { gap: 16px; }
  .step { padding: 26px 22px; }
  .value { padding: 28px 24px; }

  .contact-grid { gap: 44px; }
  .contact-item { padding: 20px 0; }
  .contact-item a.big, .contact-item p.big { font-size: 16px; word-break: break-word; }

  .footer-grid { gap: 34px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 22px 0 26px; }
}

/* Larger tap targets on any touch device */
@media (pointer: coarse) {
  .nav a { padding: 8px 0; }
  .socials a { width: 44px; height: 44px; }
  .field input, .field select, .field textarea { font-size: 16px; } /* prevents iOS zoom-on-focus */
}
