/* T Silvia Excavation — public marketing site
   Brand: navy (#122A47) + warm gold (#C18A2B) + slate (#4A4A4A)
   Typography: Roboto Slab (display) + Inter (body) — civil-engineering credibility
*/

:root {
  --navy:        #122A47;
  --navy-deep:   #0F1F35;
  --navy-soft:   #1B3A5F;
  --gold:        #C18A2B;
  --gold-light:  #D9A53F;
  --gold-deep:   #8C6019;
  --gold-glow:   rgba(193, 138, 43, 0.25);
  --ink:         #F4F2EE;
  --ink-soft:    rgba(244, 242, 238, 0.85);
  --slate:       #4A4A4A;
  --slate-light: #6E6E6E;
  --paper:       #FFFFFF;
  --bg:          #FAF8F4;
  --bg-card:     #FFFFFF;
  --border:      rgba(18, 42, 71, 0.12);
  --border-soft: rgba(18, 42, 71, 0.06);
  --green:       #2D6A4F;
  --red:         #B91C1C;

  --font-display: 'Roboto Slab', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

img, svg { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───── Sticky Nav ───── */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-brand-mark {
  width: 32px; height: 32px;
  background: var(--navy); border-radius: 6px;
  display: grid; place-items: center;
  color: var(--gold); font-weight: 900; font-family: var(--font-display);
}
.nav-brand-name em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--slate); transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }
/* Use a.nav-cta selector to outrank `.nav-links a` (which would otherwise
   force the slate color from the regular nav-link rule). */
.nav-links a.nav-cta,
a.nav-cta {
  padding: 9px 18px;
  background: var(--navy);
  color: #FFFFFF !important;
  border-radius: var(--r-sm);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.15s;
}
.nav-links a.nav-cta:hover,
a.nav-cta:hover {
  background: var(--gold-deep);
  color: #FFFFFF !important;
}
.nav-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--navy);
}
.nav-tel:hover { color: var(--gold); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.2s; }

/* ───── Hero ───── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--ink);
  padding: 100px 0 110px;
  overflow: hidden;
}
.hero::before {
  /* Topographic / blueprint-line texture overlay — subtle, evokes site plans */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(193, 138, 43, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 138, 43, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; right: -100px; bottom: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(193, 138, 43, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light);
  padding: 6px 14px;
  border: 1px solid rgba(193, 138, 43, 0.4);
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer; border: none;
  transition: all 0.18s;
  font-family: var(--font-body);
}
/* Booking + primary CTAs use deeper gold so the white lettering reads cleanly
   in any lighting condition (5.5:1 contrast — passes WCAG AA). */
.btn-primary { background: var(--gold-deep); color: #FFFFFF; font-weight: 700; }
.btn-primary:hover { background: var(--gold); color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 8px 20px var(--gold-glow); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid rgba(244, 242, 238, 0.4); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--navy); padding: 12px 18px; }
.btn-ghost:hover { background: var(--border-soft); }

.hero-trust {
  display: flex; gap: 36px; margin-top: 56px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 242, 238, 0.12);
}
.hero-trust-item .v {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.hero-trust-item .l {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ───── Section base ───── */
.section { padding: 88px 0; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy); line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ───── Services ───── */
.services { background: var(--paper); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(18, 42, 71, 0.1);
  border-color: var(--gold);
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  color: var(--gold-light);
  font-size: 1.4rem; font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 18px;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-desc { font-size: 0.92rem; color: var(--slate-light); line-height: 1.6; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--gold-deep);
}
.svc-link:hover { color: var(--gold); }

/* ───── Service area ───── */
.service-area { background: var(--bg); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.area-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 14px;
}
.area-text p { color: var(--slate); margin-bottom: 12px; line-height: 1.7; }
.area-towns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  margin-top: 24px;
}
.area-towns li {
  list-style: none;
  font-size: 0.92rem;
  color: var(--navy);
  padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.area-towns li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.area-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
}
.area-card-head {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.area-card-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.92rem;
}
.area-card-row:last-child { border-bottom: none; }
.area-card-row b { color: var(--navy); }
.area-card-row span { color: var(--slate-light); }

/* ───── About ───── */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center; }
.about-photo {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--r-md);
  aspect-ratio: 4/5;
  display: grid; place-items: center;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.about-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(193, 138, 43, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 138, 43, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.about-photo .ph-text {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  text-align: center;
  padding: 24px;
}
.about-photo .ph-text strong {
  display: block; font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 10px;
}
.about-photo .ph-text span {
  display: block; font-size: 1.4rem; font-weight: 700;
  color: var(--ink); line-height: 1.3;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 18px;
  line-height: 1.2;
}
.about-text p { color: var(--slate); line-height: 1.7; margin-bottom: 16px; }
.about-stats { display: flex; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.about-stat .v {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--gold-deep); line-height: 1;
}
.about-stat .l {
  font-size: 0.82rem;
  color: var(--slate-light);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ───── Process ───── */
.process { background: var(--bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.process-step {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  position: relative;
}
.process-step .num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.88rem; color: var(--slate-light); line-height: 1.6; }

/* ───── FAQ ───── */
.faq { background: var(--paper); }
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; color: var(--gold);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .ans {
  padding: 0 22px 22px;
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.7;
}
.faq-item .ans p + p { margin-top: 10px; }

/* ───── Pricing transparency ───── */
.pricing { background: var(--bg); }
.pricing-card {
  max-width: 820px; margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.pricing-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--navy);
  margin-bottom: 14px;
}
.pricing-amt {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.pricing-note { font-size: 0.86rem; color: var(--slate-light); margin-bottom: 16px; }
.pricing-list { list-style: none; }
.pricing-list li {
  padding: 8px 0;
  font-size: 0.92rem; color: var(--slate);
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ───── Booking section ───── */
.book {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--ink);
  position: relative; overflow: hidden;
}
.book::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(193, 138, 43, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 138, 43, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.book-inner { position: relative; z-index: 1; }
.book .section-title { color: var(--ink); }
.book .section-sub { color: var(--ink-soft); }
.book .section-eyebrow { color: var(--gold-light); }

.book-form {
  max-width: 760px; margin: 0 auto;
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 40px 36px;
  color: var(--slate);
}
.bf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 16px; }
.bf-group { display: flex; flex-direction: column; gap: 6px; }
.bf-group.full { grid-column: 1 / -1; }
.bf-group label {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.bf-group input, .bf-group select, .bf-group textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg); color: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: all 0.18s;
}
.bf-group input:focus, .bf-group select:focus, .bf-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: var(--paper);
}
.bf-group textarea { min-height: 100px; resize: vertical; }
.bf-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 18px 0 22px;
  font-size: 0.86rem; color: var(--slate-light); line-height: 1.55;
}
.bf-consent input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.bf-submit {
  width: 100%; padding: 14px;
  background: var(--gold-deep); color: #FFFFFF;
  border: none; border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer; transition: all 0.18s;
}
.bf-submit:hover { background: var(--gold); color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 8px 20px var(--gold-glow); }
.bf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.bf-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.bf-success {
  display: none;
  text-align: center; padding: 32px;
  background: rgba(45, 106, 79, 0.08);
  border: 1px solid var(--green);
  border-radius: var(--r-md);
  color: var(--green);
}
.bf-success.show { display: block; }
.bf-success h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; }
.bf-success p { color: var(--slate); }
.bf-error {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(185, 28, 28, 0.08);
  border-left: 3px solid var(--red);
  border-radius: var(--r-sm);
  color: var(--red); font-size: 0.9rem;
}
.bf-error.show { display: block; }

/* ───── Footer ───── */
.footer {
  background: var(--navy-deep);
  color: var(--ink);
  padding: 64px 0 24px;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 242, 238, 0.12);
}
.footer-logo {
  width: 60px; height: 60px;
  border-radius: 6px;
  display: block;
  margin-bottom: 14px;
}
.footer-mark {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--ink); margin-bottom: 12px;
}
.footer-mark em { font-style: normal; color: var(--gold-light); }
.footer-tag { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto; padding: 22px 24px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(244, 242, 238, 0.45);
}
.footer-credit {
  max-width: 1180px; margin: 0 auto; padding: 8px 24px 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.18);
}
.footer-credit span { color: rgba(193, 138, 43, 0.55); }

/* ───── Responsive ───── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; flex-direction: column; }
  .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { aspect-ratio: 16/9; max-height: 320px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .hero { padding: 64px 0 80px; }
  .hero-trust { gap: 24px; margin-top: 36px; padding-top: 24px; }
  .hero-trust-item .v { font-size: 1.5rem; }
  .bf-grid { grid-template-columns: 1fr; gap: 14px; }
  .book-form { padding: 28px 22px; }
  .pricing-card { padding: 28px 22px; }
  .area-towns { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* iOS form input sizing — prevents auto-zoom */
@media (max-width: 600px) {
  .bf-group input, .bf-group select, .bf-group textarea { font-size: 16px; }
  .navbar { padding: 12px 0; }
  .nav-inner { padding: 0 18px; }
  .btn { padding: 12px 22px; font-size: .9rem; }
  .btn-primary, .btn-secondary { min-height: 44px; }
  .hero-trust { gap: 18px; }
  .hero-trust-item { flex: 1 1 calc(50% - 10px); min-width: 130px; }
}

/* Narrow phones (iPhone SE class) */
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .section { padding: 52px 0; }
  .hero { padding: 52px 0 64px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-trust { gap: 14px; margin-top: 32px; }
  .hero-trust-item .v { font-size: 1.3rem; }
  .hero-trust-item .l { font-size: .68rem; }
  .book-form { padding: 22px 18px; }
  .footer-inner { padding: 0 14px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Print */
@media print {
  .navbar, .hero-actions, .book, .footer { display: none; }
}
