/* ============================================================
   MIST.HK — fresh, cyan-forward, calm
   ============================================================ */

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

:root {
  /* Surfaces */
  --bg: #f6fbfc;
  --surface: #ffffff;
  --surface-2: #ecf7f9;
  --line: #d9e7eb;
  --line-soft: #e9f1f3;

  /* Text */
  --text: #0c1f25;
  --text-2: #3a525d;
  --mute: #74878f;

  /* Brand — derived from logo cyan #00e3f4 */
  --brand: #00d4e6;
  --brand-bright: #00e3f4;
  --brand-deep: #007a8a;
  --brand-darker: #06434f;
  --mist-soft: #c5f1f7;
  --mist-pale: #e8f8fa;

  /* Type */
  --display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  --serif: 'Fraunces', 'Georgia', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(10, 51, 64, 0.06), 0 4px 12px rgba(10, 51, 64, 0.04);
  --shadow: 0 8px 28px rgba(10, 51, 64, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 51, 64, 0.14);

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

html { scroll-behavior: smooth; }
html, body {
  background: var(--bg); color: var(--text);
  font-family: var(--body); -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--mist-soft); color: var(--text); }

/* ====== NAV — dark, with bright cyan logo ====== */
nav#nav {
  position: sticky; top: 0; z-index: 100;
  padding: 16px 32px;
  background: rgba(10, 30, 36, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s, border-color .25s;
}
nav#nav.scrolled {
  background: rgba(8, 24, 30, 0.96);
  border-bottom-color: rgba(255,255,255,.1);
}
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo {
  display: inline-flex; align-items: center;
  height: 44px;
  color: var(--brand-bright);
  transition: opacity .2s;
}
.logo svg { height: 44px; width: auto; display: block; }
.logo:hover { opacity: .85; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px; color: rgba(255,255,255,.78);
  transition: color .2s; font-weight: 500;
}
.nav-links a:hover { color: var(--brand-bright); }
.nav-cta {
  background: var(--brand-bright) !important;
  color: var(--text) !important;
  padding: 11px 22px; border-radius: 999px;
  transition: all .2s;
  font-weight: 700;
}
.nav-cta:hover { background: white !important; color: var(--text) !important; }
.nav-mobile-btn {
  display: none; background: none; border: none; padding: 8px;
  cursor: pointer;
}
.nav-mobile-btn span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: .25s; border-radius: 2px; }
.mobile-nav { display: none; }
.mobile-nav a { color: rgba(255,255,255,.85) !important; }

/* ====== BTN ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  background: transparent; color: var(--text);
  transition: all .2s; cursor: pointer;
  font-family: var(--body); line-height: 1;
}
.btn-primary {
  background: var(--text); color: white; border-color: var(--text);
}
.btn-primary:hover { background: var(--brand-deep); border-color: var(--brand-deep); }
.btn-secondary { background: white; color: var(--text); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-darker); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ====== HERO ====== */
section.hero {
  position: relative;
  padding: 70px 32px 110px;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(0,227,244,.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(0,227,244,.10) 0%, transparent 70%),
    var(--bg);
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 70px; align-items: center;
}
.hero-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .1em;
  color: var(--brand-deep); text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 6px 14px;
  background: var(--mist-pale);
  border: 1px solid var(--mist-soft);
  border-radius: 999px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 0 4px rgba(0,227,244,.2);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(0,227,244,.2); }
  50% { box-shadow: 0 0 0 8px rgba(0,227,244,.05); }
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 700; line-height: 1.04; letter-spacing: -.025em;
  margin-bottom: 26px;
  color: var(--text);
}
.hero-title em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--brand-deep);
}
.hero-sub {
  font-size: 18px; max-width: 520px; color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-stat .num {
  font-family: var(--display); font-size: 30px; font-weight: 700;
  color: var(--text); letter-spacing: -.02em;
}
.hero-stat .num span { color: var(--brand-deep); font-weight: 500; }
.hero-stat .label {
  font-size: 12px; color: var(--mute); margin-top: 4px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--mist-soft), var(--surface-2));
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-tag {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
  gap: 12px;
}
.hero-tag-l { font-size: 12px; color: var(--mute); font-weight: 500; }
.hero-tag-l strong { color: var(--text); display: block; font-size: 15px; margin-top: 2px; }
.hero-tag-r {
  background: var(--text); color: white;
  padding: 9px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
  transition: background .2s;
}
.hero-tag-r:hover { background: var(--brand-deep); }

/* ====== SECTION HEAD ====== */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .1em;
  color: var(--brand-deep); text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--brand); border-radius: 2px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700; letter-spacing: -.022em;
  line-height: 1.08; color: var(--text);
}
.section-title em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--brand-deep);
}
.section-sub {
  font-size: 17px; color: var(--text-2);
  margin-top: 16px; line-height: 1.55;
}

/* ====== WHY ====== */
.why {
  padding: 110px 32px;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.why-inner { max-width: 1280px; margin: 0 auto; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-bright), var(--brand));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.why-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--mist-soft) 0%, var(--mist-pale) 100%);
  color: var(--brand-deep);
  border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  position: relative;
}
.why-icon::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--r-md);
  border: 1px solid rgba(0,227,244,.18);
  pointer-events: none;
}
.why-icon svg { width: 26px; height: 26px; display: block; }
.why-card h3 {
  font-family: var(--display); font-size: 19px;
  font-weight: 700; margin-bottom: 10px; letter-spacing: -.012em;
}
.why-card p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }

/* ====== PRODUCTS ====== */
.products {
  padding: 110px 32px;
  background: var(--bg);
}
.products-inner { max-width: 1280px; margin: 0 auto; }

.cat-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 0 0 44px;
  padding-bottom: 4px;
}
.cat-tab {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface); color: var(--text-2);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all .2s;
  font-family: var(--body);
}
.cat-tab:hover { border-color: var(--brand); color: var(--brand-darker); }
.cat-tab.active { background: var(--text); color: white; border-color: var(--text); }
.cat-tab .count {
  font-size: 11px; opacity: .65; margin-left: 6px; font-weight: 400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card .img-wrap {
  aspect-ratio: 1;
  background: var(--surface-2);
  position: relative; overflow: hidden;
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform .5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.05); }
.product-card .cmh-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--text);
  color: white;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .03em;
}
.product-card .body {
  padding: 18px 22px 22px;
  flex: 1;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.product-card .klass {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  color: var(--brand-deep); text-transform: uppercase;
  margin-bottom: 8px;
}
.product-card h3 {
  font-family: var(--display); font-size: 19px;
  font-weight: 700; letter-spacing: -.01em;
  margin-bottom: 6px;
}
.product-card .area {
  font-size: 13.5px; color: var(--text-2);
  margin-bottom: 14px;
}
.product-card .view {
  margin-top: auto;
  font-size: 13px; font-weight: 600;
  color: var(--brand-deep);
  display: inline-flex; align-items: center; gap: 4px;
}
.product-card .view::after { content: '→'; transition: transform .2s; }
.product-card:hover .view::after { transform: translateX(3px); }

/* ====== APPLICATIONS — bento with real photos ====== */
.apps {
  padding: 110px 32px;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
}
.apps-inner { max-width: 1280px; margin: 0 auto; }
.apps-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.app-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  cursor: default;
  background: var(--text);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; align-items: flex-end;
}
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.app-card .photo {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.app-card:hover .photo { transform: scale(1.06); }
.app-card::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(10,30,36,.05) 0%, rgba(10,30,36,.45) 60%, rgba(10,30,36,.85) 100%);
  transition: background .35s;
}
.app-card:hover::before {
  background: linear-gradient(180deg, rgba(10,30,36,.2) 0%, rgba(10,30,36,.65) 50%, rgba(10,30,36,.92) 100%);
}
.app-card .body {
  position: relative; z-index: 3;
  padding: 24px 26px;
  color: white;
  width: 100%;
}
.app-card .badge {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 10px;
  background: rgba(0,227,244,.12);
  border: 1px solid rgba(0,227,244,.4);
  padding: 4px 10px; border-radius: 999px;
}
.app-card h3 {
  font-family: var(--display); font-size: 22px;
  font-weight: 700; margin-bottom: 8px; letter-spacing: -.012em;
  color: white;
}
.app-card p {
  font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.5;
  max-width: 460px;
}
/* Bento sizing — asymmetric, distinctive */
.app-card.feature { grid-column: span 7; grid-row: span 2; }
.app-card.tall { grid-column: span 5; grid-row: span 2; }
.app-card.wide { grid-column: span 8; }
.app-card.std { grid-column: span 4; }
.app-card.feature h3 { font-size: 32px; }
.app-card.tall h3 { font-size: 26px; }
.app-card.feature p, .app-card.tall p { font-size: 15px; }

/* ====== LINEUP ====== */
.lineup {
  padding: 110px 32px;
  background: var(--bg);
}
.lineup-inner { max-width: 1280px; margin: 0 auto; }
.lineup-table {
  margin-top: 44px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lineup-head {
  display: grid;
  grid-template-columns: 60px 200px 1fr 160px 160px 100px;
  gap: 20px; padding: 16px 28px;
  background: var(--surface-2);
  font-size: 12px; font-weight: 600;
  letter-spacing: .06em; color: var(--mute); text-transform: uppercase;
}
.lineup-row {
  display: grid;
  grid-template-columns: 60px 200px 1fr 160px 160px 100px;
  gap: 20px;
  padding: 14px 28px;
  border-top: 1px solid var(--line-soft);
  align-items: center;
  transition: background .2s;
  color: var(--text);
}
.lineup-row:hover { background: var(--mist-pale); }
.lineup-row .thumb {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  flex: none;
}
.lineup-row .thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
}
.lineup-row .sku {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  letter-spacing: -.01em;
}
.lineup-row .name { color: var(--text-2); font-size: 14px; }
.lineup-row .cmh-cell {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  color: var(--brand-deep);
}
.lineup-row .area { font-size: 14px; color: var(--text-2); }
.lineup-row .cta-cell { text-align: right; }
.lineup-row .cta-cell span {
  font-size: 13px; font-weight: 600; color: var(--brand-deep);
}
.lineup-row .cta-cell span::after {
  content: ' →'; transition: margin .2s; display: inline-block;
}
.lineup-row:hover .cta-cell span::after { margin-left: 3px; }

/* ====== CONTACT ====== */
.contact {
  padding: 110px 32px;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,227,244,.06) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
  position: relative;
}
.contact-left h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700; letter-spacing: -.022em; line-height: 1.08;
}
.contact-left h2 em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--brand-deep);
}
.contact-left p { color: var(--text-2); font-size: 17px; margin-top: 20px; max-width: 460px; line-height: 1.6; }
.contact-cards { display: grid; gap: 12px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 26px;
  border: 1px solid var(--line-soft); border-radius: var(--r-md);
  background: var(--bg);
  transition: all .2s;
}
.contact-card:hover { border-color: var(--brand); transform: translateX(4px); background: var(--mist-pale); }
.contact-card .ico {
  width: 52px; height: 52px; flex: none;
  background: linear-gradient(135deg, var(--mist-soft) 0%, var(--mist-pale) 100%);
  color: var(--brand-deep);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background .25s, color .25s;
}
.contact-card .ico::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--r-md);
  border: 1px solid rgba(0,227,244,.18);
  pointer-events: none;
  transition: border-color .25s;
}
.contact-card .ico svg { width: 26px; height: 26px; display: block; }
.contact-card:hover .ico {
  background: var(--brand-bright);
  color: var(--text);
}
.contact-card:hover .ico::after { border-color: transparent; }
.contact-card .label {
  font-size: 12px; color: var(--mute); font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
}
.contact-card .value {
  font-family: var(--display); font-size: 18px; font-weight: 700;
  color: var(--text); margin-top: 2px;
}

/* ====== FOOTER ====== */
footer {
  padding: 64px 32px 32px;
  background: var(--text);
  color: rgba(255,255,255,.7);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
}
.footer-brand .logo { color: var(--brand-bright); height: 32px; }
.footer-brand .logo svg { height: 32px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 16px; max-width: 360px; line-height: 1.55; }
.footer-col h5 {
  font-size: 12px; letter-spacing: .08em;
  font-weight: 600; color: white; margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.65); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--brand-bright); }
.footer-bottom {
  max-width: 1280px; margin: 48px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,.45);
}

/* ====== REVEAL ====== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 1; max-width: 540px; margin: 0 auto; width: 100%; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-bento { grid-auto-rows: 200px; }
  .app-card.feature { grid-column: span 12; grid-row: span 2; }
  .app-card.tall { grid-column: span 12; grid-row: span 2; }
  .app-card.wide { grid-column: span 12; }
  .app-card.std { grid-column: span 6; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .mobile-nav { display: none; flex-direction: column; gap: 14px; padding: 20px 0 4px; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 8px 0; font-size: 15px; color: var(--text-2); }
  .lineup-head { display: none; }
  .lineup-row {
    grid-template-columns: 52px 1fr 90px;
    grid-template-areas:
      "thumb sku cmh"
      "thumb name area"
      "thumb cta cta";
    padding: 14px 20px; gap: 4px 14px;
    align-items: center;
  }
  .lineup-row .thumb { grid-area: thumb; align-self: center; }
  .lineup-row .sku { grid-area: sku; }
  .lineup-row .cmh-cell { grid-area: cmh; text-align: right; }
  .lineup-row .name { grid-area: name; font-size: 13px; }
  .lineup-row .area { grid-area: area; text-align: right; font-size: 13px; }
  .lineup-row .cta-cell { grid-area: cta; text-align: left; padding-top: 4px; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .apps-bento { grid-auto-rows: 180px; }
  .app-card.std { grid-column: span 12; }
  .app-card h3 { font-size: 20px !important; }
  .app-card.feature h3 { font-size: 24px !important; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  section.hero, .why, .products, .apps, .lineup, .contact { padding-left: 20px; padding-right: 20px; }
  nav#nav { padding: 14px 20px; }
}
