/* ============================================
   NAIL & HAMMER — Inspired by fluid.glass
   Warm, approachable, multifaceted contractor
   ============================================ */

/* --- TOKENS --- */
:root {
  --bg: #FAFAF8;
  --bg-alt: #F0EFEB;
  --bg-dark: #1A1A1A;
  --bg-panel: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #5A5A58;
  --text-muted: #8A8A85;
  --text-inverse: #FAFAF8;
  --accent: #C75B2A;
  --accent-hover: #A8471F;
  --accent-subtle: rgba(199, 91, 42, 0.08);
  --border: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(199, 91, 42, 0.3);
  --radius: 8px;
  --radius-lg: 16px;
  --font: 'DM Sans', system-ui, sans-serif;
  --mono: 'DM Mono', 'SF Mono', monospace;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 1280px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- UTILITIES --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1360px) { .container { padding: 0; } }

.section { padding: clamp(80px, 12vw, 160px) 0; }
.section-tag {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* --- LOADER --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-icon {
  font-size: 48px;
  opacity: 0;
  transform: translateY(-60px);
}
.loader-text {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
.loader-word { opacity: 0; transform: translateY(20px); }
.loader-amp { opacity: 0; color: var(--accent); font-weight: 400; }
.loader-line {
  width: 0;
  height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
}

/* --- CUSTOM CURSOR --- */
.cursor {
  display: none;
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9990;
  transition: width 0.3s, height 0.3s, margin 0.3s, background 0.3s;
  transform: translate(-50%, -50%);
}
.cursor.active {
  width: 64px;
  height: 64px;
  background: rgba(199, 91, 42, 0.15);
  backdrop-filter: blur(4px);
  mix-blend-mode: normal;
}
.cursor-label {
  display: none;
  position: fixed;
  pointer-events: none;
  z-index: 9991;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
}
.cursor-label.visible { opacity: 1; }
@media (pointer: fine) {
  .cursor, .cursor-label { display: block; }
  body { cursor: none; }
  a, button, [data-cursor] { cursor: none; }
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  padding: 12px 40px;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--text-inverse);
  border-radius: 100px;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); }
@media (min-width: 900px) { .nav-links { display: flex; } }

/* --- HAMBURGER --- */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .nav-hamburger { display: none; } }

/* --- MOBILE NAV --- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-link {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}
.mobile-nav-cta {
  padding: 16px 40px;
  background: var(--accent);
  color: var(--text-inverse);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.2) 0%, rgba(26,26,26,0.6) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--text-inverse);
  padding: 0 24px;
  max-width: 900px;
}
.hero-badge {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badge-sep { color: var(--accent); }
.hero-headline {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50% { opacity: 0.6; transform: scaleY(1); }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--text-inverse); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-glass {
  background: rgba(255,255,255,0.1);
  color: var(--text-inverse);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { font-size: 16px; }

/* --- TRUST STRIP --- */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 40px 24px;
  background: var(--bg-alt);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}
.trust-icon { font-size: 16px; }

/* --- MARQUEE --- */
.marquee-section {
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0 8px;
  flex-shrink: 0;
}
.marquee-dot { color: var(--accent); }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- GALLERY --- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.gallery-wide { grid-column: span 1; }
@media (min-width: 640px) { .gallery-wide { grid-column: span 2; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-wide { aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery:hover .gallery-item:not(:hover) img { filter: grayscale(0.6) brightness(0.8); }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-label { transform: translateY(0); }
@media (hover: none) {
  .gallery-label { transform: translateY(0); }
  .gallery:hover .gallery-item:not(:hover) img { filter: none; }
}

/* --- PROCESS --- */
.process { background: var(--bg-alt); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.process-step {
  padding: 32px;
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(199, 91, 42, 0.06);
}
.process-num {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- ABOUT --- */
.about { background: var(--bg-dark); color: var(--text-inverse); }
.about .section-tag { color: var(--accent); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-copy {
  font-size: 17px;
  color: rgba(250,250,248,0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  display: inline;
}
.stat-plus, .stat-star { font-size: 32px; font-weight: 700; color: var(--accent); }
.stat-label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(250,250,248,0.5);
  margin-top: 4px;
}
.about-images { position: relative; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.about-img-offset {
  margin-top: -60px;
  margin-left: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
@media (max-width: 899px) {
  .about-img-offset { margin-left: 20px; margin-top: -40px; }
}

/* --- SERVICE AREA --- */
.area-grid { max-width: 600px; }
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .area-list { grid-template-columns: repeat(4, 1fr); } }
.area-item {
  padding: 12px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.area-item:hover { border-color: var(--border-hover); }

/* --- FAQ --- */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* --- CTA BANNER --- */
.cta-banner {
  padding: clamp(60px, 10vw, 120px) 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 40px;
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-glass {
  color: var(--text);
  border-color: var(--border);
  background: var(--bg-alt);
  backdrop-filter: none;
}
.cta-banner .btn-glass:hover { background: var(--bg); border-color: var(--accent); }

/* --- FOOTER --- */
.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-tagline { color: rgba(250,250,248,0.5); font-size: 15px; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col p {
  color: rgba(250,250,248,0.6);
  font-size: 14px;
  line-height: 1.8;
}
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-hours {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(250,250,248,0.3);
}

/* --- QUOTE PANEL --- */
.quote-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.4s;
}
.quote-overlay.open {
  background: rgba(0,0,0,0.4);
  pointer-events: auto;
}
.quote-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  z-index: 210;
  background: var(--bg-panel);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
}
.quote-panel.open { transform: translateX(0); }
.quote-panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.quote-panel-close:hover { background: var(--bg-alt); color: var(--text); }
.quote-panel-inner { padding: 60px 32px 40px; }
.quote-panel-inner h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.quote-panel-sub {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
}

/* Form */
.form-group { margin-bottom: 20px; }
.form-group label,
.form-group-legend {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}
.form-group input.error,
.form-group textarea.error { border-color: #e53e3e; }
.form-group textarea { resize: vertical; min-height: 80px; }

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  cursor: pointer;
}
.chip input { display: none; }
.chip span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: all var(--transition);
  user-select: none;
}
.chip input:checked + span {
  background: var(--accent);
  color: var(--text-inverse);
  border-color: var(--accent);
}
.chip:hover span { border-color: var(--accent); }

.quote-success {
  text-align: center;
  padding: 40px 0;
}
.quote-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.quote-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.quote-success p { color: var(--text-secondary); }
.quote-success a { color: var(--accent); font-weight: 600; }

/* --- MOBILE CTA BAR --- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  background: var(--bg-dark);
  padding: 12px;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.mobile-cta-call {
  background: transparent;
  color: var(--text-inverse);
  border: 1px solid rgba(255,255,255,0.2);
}
.mobile-cta-quote {
  background: var(--accent);
  color: var(--text-inverse);
}
@media (min-width: 900px) { .mobile-cta { display: none; } }

/* --- REVEAL ANIMATIONS --- */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
}
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-text { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .loader { display: none; }
}
