/* =========================================
   Angels Stucco Repair — Main Stylesheet
   Color Palette: Deep Slate + Warm Amber + Cream
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Barlow:wght@300;400;500;600;700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a2340;
  --navy-dk: #0f1524;
  --amber:   #d97c14;
  --amber-lt:#f0a043;
  --cream:   #f7f2eb;
  --cream-dk:#ede5d8;
  --slate:   #4a5568;
  --white:   #ffffff;
  --text:    #2d3748;
  --border:  #d4c9b8;
  --shadow:  0 4px 24px rgba(26,35,64,.12);
  --shadow-lg:0 12px 48px rgba(26,35,64,.18);
  --radius:  8px;
  --radius-lg:16px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,124,20,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-dk);
  border-color: var(--navy-dk);
  transform: translateY(-2px);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* === TOP BAR === */
.top-bar {
  background: var(--navy-dk);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 2px solid var(--amber);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--amber-lt); transition: color var(--transition); }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* === HEADER === */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon {
  width: 52px;
  height: 52px;
  background: var(--amber);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  display: block;
  font-weight: 700;
}
.logo-tagline {
  font-size: 11px;
  color: var(--amber-lt);
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav ul { display: flex; align-items: center; gap: 4px; }
nav a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: .3px;
}
nav a:hover, nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--amber-lt) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, #2a3a60 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.015) 40px,
    rgba(255,255,255,.015) 80px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,124,20,.2);
  border: 1px solid rgba(217,124,20,.4);
  color: var(--amber-lt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero h1 span { color: var(--amber); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === SERVICES CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}
.service-card-img {
  height: 210px;
  background: var(--cream-dk);
  background-image: url('../images/service1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card-img.s2 { background-image: url('../images/service2.jpg'); }
.service-card-img.s3 { background-image: url('../images/service3.jpg'); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,35,64,.6) 0%, transparent 60%);
}
.service-card-body { padding: 28px; }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(217,124,20,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--slate); font-size: 14px; line-height: 1.7; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  transition: gap var(--transition);
}
.service-card .learn-more:hover { gap: 10px; }

/* === WHY CHOOSE US === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  background: var(--cream-dk);
}
.why-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--amber);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}
.why-badge-overlay span { display: block; font-size: 28px; font-family: 'Playfair Display', serif; }
.feature-list { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-check {
  width: 32px; height: 32px;
  background: rgba(217,124,20,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item h4 { font-size: 15px; font-family: 'Barlow', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feature-item p { font-size: 14px; color: var(--slate); }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 80px;
  font-family: 'Playfair Display', serif;
  color: var(--amber);
  opacity: .15;
  line-height: 1;
}
.stars { display: flex; gap: 4px; color: var(--amber); font-size: 16px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--slate); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream-dk);
  object-fit: cover;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.author-loc { font-size: 13px; color: var(--slate); }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--amber) 0%, #b86010 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,.04) 30px,
    rgba(255,255,255,.04) 60px
  );
}
.cta-band .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 36px); color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 16px; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.7); }

/* === AREAS === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.area-tag:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(217,124,20,.04);
}
.area-tag::before {
  content: '📍';
  font-size: 14px;
}

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-icon { font-size: 20px; flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  background: var(--cream);
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: all .35s ease;
}
.faq-answer.open { padding: 20px 28px; max-height: 400px; }
.faq-answer p { color: var(--slate); font-size: 15px; line-height: 1.75; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 22px; margin-bottom: 20px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(217,124,20,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 13px; font-family: 'Barlow', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); margin-bottom: 4px; }
.contact-detail a, .contact-detail p { font-size: 15px; color: var(--text); font-weight: 500; }
.contact-detail a:hover { color: var(--amber); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); margin-bottom: 8px; }
input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(217,124,20,.15);
}
textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 16px;
  font-size: 15px;
}

/* === MAP === */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 48px;
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: none; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.02) 40px,
    rgba(255,255,255,.02) 80px
  );
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(30px, 4vw, 52px); color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.72); max-width: 580px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--amber-lt); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* === ABOUT PAGE === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 500px; object-fit: cover; background: var(--cream-dk); display: block; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--amber);
}
.value-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--slate); }

/* === SERVICES PAGE === */
.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.service-full:last-child { border-bottom: none; }
.service-full:nth-child(even) .service-full-img { order: -1; }
.service-full-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-full-img img { width: 100%; height: 340px; object-fit: cover; background: var(--cream-dk); display: block; }
.service-full-content h2 { font-size: 30px; margin-bottom: 14px; }
.service-full-content p { color: var(--slate); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.service-list { margin: 16px 0; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  font-weight: 500;
}
.service-list li::before { content: '✓'; color: var(--amber); font-weight: 700; font-size: 16px; }

/* === FOOTER === */
footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-name { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: background var(--transition);
  width: fit-content;
}
.footer-phone:hover { background: var(--amber-lt); }
.footer-col h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--amber-lt); }
.footer-bottom a:hover { color: var(--white); }

/* === TERMS/PRIVACY === */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.85;
}
.legal-content h2 { font-size: 24px; margin: 36px 0 12px; }
.legal-content h3 { font-size: 18px; margin: 24px 0 10px; font-family: 'Barlow', sans-serif; font-weight: 700; }
.legal-content p { color: var(--slate); font-size: 15px; margin-bottom: 14px; }
.legal-content ul { padding-left: 24px; list-style: disc; margin-bottom: 14px; }
.legal-content ul li { color: var(--slate); font-size: 15px; margin-bottom: 6px; }

/* === RESPONSIVE === */
@media(max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-full { grid-template-columns: 1fr; }
  .service-full:nth-child(even) .service-full-img { order: 0; }
}
@media(max-width: 768px) {
  nav { display: none; position: fixed; inset: 0; top: 0; background: var(--navy-dk); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
  nav.open { display: flex; }
  nav ul { flex-direction: column; align-items: center; gap: 6px; }
  nav a { font-size: 18px; padding: 14px 28px; }
  .hamburger { display: flex; z-index: 1000; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
  .top-bar-left { display: none; }
  .section-pad { padding: 56px 0; }
}
@media(max-width: 480px) {
  .contact-form { padding: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
