
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-var.woff2") format("woff2-variations"),
       url("assets/fonts/montserrat-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
    --ink:          #14161a;    --ink-soft:     #2a2e35;
  --steel:        #5a6068;    --mist:         #f2f1ef;    --line:         #e0dedb;
  --paper:        #ffffff;
  --bordeaux:     #7e1a17;    --bordeaux-lit: #9b2b26;  
    --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(1.9rem, 1.5rem + 2vw, 3rem);
  --step-4:  clamp(2.3rem, 1.6rem + 3.4vw, 4.2rem);

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(20, 22, 26, .04), 0 12px 28px rgba(20, 22, 26, .06);
  --shadow-lift: 0 4px 10px rgba(20, 22, 26, .07), 0 24px 48px rgba(20, 22, 26, .12);
  --ease: cubic-bezier(.2, .6, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scrollbar-gutter: stable; }
[id] { scroll-margin-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.7;
  color: var(--steel);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bordeaux); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--bordeaux-lit); }
:focus-visible {
  outline: 2px solid var(--bordeaux);
  outline-offset: 3px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

h1, h2, h3 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 800; }
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-1); letter-spacing: -0.012em; }
p  {
  margin: 0 0 1.2em;
  max-width: 68ch;
  text-align: left;
}
strong { color: var(--ink); font-weight: 600; }

.eyebrow, .cta-eyebrow {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin: 0 0 .9rem;
}

.rule {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--bordeaux);
  margin: 0 0 1.6rem;
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.text-link span { transition: transform .25s var(--ease); display: inline-block; }
.text-link:hover span { transform: translateX(4px); }

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-grey { background: var(--mist); }

main { display: block; }

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--bordeaux);
  color: #fff;
  padding: .85rem 1.4rem;
  font-size: var(--step--1);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: transform .2s var(--ease);
}
.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: .7rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { height: 48px; width: auto; max-width: 200px; }

.header-phone {
  display: none;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--bordeaux);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--bordeaux-lit); }
@media (min-width: 981px) {
  .header-phone { display: inline-flex; align-items: center; }
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  cursor: pointer;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle-bar {
  display: block; height: 2px; width: 100%;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .35rem;
  margin: 0;
  padding: 0;
}
.nav-list > li { position: relative; }
.nav-list a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font: inherit;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: .75rem .85rem;
  background: none;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
}
.nav-list a:hover,
.dropdown-toggle:hover,
.nav-list a.is-active {
  color: var(--bordeaux);
}
.nav-list a { position: relative; }
.nav-list a.is-active::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .55rem;
  height: 2px;
  background: var(--bordeaux);
}

.chevron {
  width: 7px; height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease);
}
.has-dropdown[data-open="true"] .chevron { transform: rotate(-135deg) translateY(-2px); }

.dropdown {
  list-style: none;
  margin: 0;
  padding: .45rem;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 250px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-dropdown[data-open="true"] .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
  font-size: .93rem;
  padding: .6rem .8rem;
}
.dropdown a:hover { background: var(--mist); }
.dropdown a.is-active { background: var(--mist); }
.dropdown a.is-active::after { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.7rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent { background: var(--bordeaux); color: var(--paper); }
.btn-accent:hover { background: var(--bordeaux-lit); color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--mist); color: var(--ink); }
.btn-outline-light {
  border-color: rgba(255, 255, 255, .45);
  color: var(--paper);
  background: transparent;
}
.btn-outline-light:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, .1);
  color: var(--paper);
}

.hero {
  position: relative;
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  padding-block: clamp(4.5rem, 12vw, 9rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero.jpg");
  background-image: image-set("assets/images/hero.webp" type("image/webp"), "assets/images/hero.jpg" type("image/jpeg"));
  background-size: cover;
  background-position: 78% 35%;
  opacity: .28;
  filter: grayscale(1) contrast(1.05);
}
@media (max-width: 640px) {
  .hero::before {
    background-size: 220% auto;
    background-position: 62% top;
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--ink) 0%, rgba(20,22,26,.72) 45%, rgba(20,22,26,.35) 100%),
    radial-gradient(120% 90% at 50% 50%, transparent 40%, rgba(20,22,26,.55) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--paper); max-width: 18ch; }
.hero .eyebrow { color: #d99a97; }
.hero-lead {
  text-align: left;
  text-align-last: left;
  font-size: var(--step-1);
  font-weight: 300;
  line-height: 1.55;
  max-width: 52ch;
  color: rgba(255, 255, 255, .84);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin: 2.2rem 0 1.8rem;
}
.hero-note {
  font-size: var(--step--1);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin: 0;
}

.page-hero {
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.page-hero h1 { color: var(--paper); font-size: var(--step-3); }
.page-hero .eyebrow { color: #d99a97; }
.page-hero + .section { padding-block-start: clamp(2rem, 4vw, 3.5rem); }
.service-banner {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
.service-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 26, 0) 45%, rgba(20, 22, 26, .5) 100%);
}
.service-banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--bordeaux);
  z-index: 1;
}
.service-banner + .section { padding-block-start: clamp(2rem, 4vw, 3.5rem); }
.page-lead {
  text-align: left;
  text-align-last: left;
  font-size: var(--step-1);
  font-weight: 300;
  color: rgba(255, 255, 255, .82);
  max-width: 56ch;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: 3rem;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: transparent; color: inherit; }
.card-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--mist); }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.85) contrast(1.02);
  transition: transform .5s var(--ease), filter .4s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); filter: grayscale(0); }
.card-body { padding: 1.6rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .55rem; }
.card-body p { font-size: .95rem; margin-bottom: 1.4rem; text-align: left; }
.card-more {
  margin-top: auto;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.card-more span { display: inline-block; transition: transform .25s var(--ease); }
.card:hover .card-more span { transform: translateX(5px); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.feature-list li {
  position: relative;
  padding: .7rem 0 .7rem 1.15rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.28rem;
  width: 10px; height: 2px;
  background: var(--bordeaux);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 0 0 2.8rem;
  padding: 0;
}
.toc-list a {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  text-decoration: none;
  background: var(--mist);
  padding: .6rem 1.1rem;
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.toc-list a:hover { background: var(--bordeaux); color: var(--paper); }

.pull-quote {
  margin: 3rem 0 1rem;
  padding: 0;
  font-size: var(--step-2);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: center;
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.split-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.split-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; background: var(--mist); }
.split-card > a { display: block; cursor: pointer; }
.split-card h2 { margin: 1.3rem 1.4rem .4rem; font-size: var(--step-1); letter-spacing: -0.012em; }
.split-card p { margin: 0 1.4rem 1.5rem; font-size: .95rem; }

.cta-band {
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
  border-top: 3px solid var(--bordeaux);
}
.cta-band .cta-eyebrow { color: #d99a97; max-width: none; margin-inline: auto; }
.cta-band h2 {
  color: var(--paper);
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-info address { font-style: normal; color: var(--ink); font-weight: 500; margin-bottom: 1.6rem; }
.contact-list { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.contact-list li { padding: .9rem 0; border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: .2rem;
}
.contact-list a {
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.contact-list a:hover { color: var(--bordeaux); }
.contact-note {
  text-align: left;
  font-size: var(--step--1);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
}
@media (min-width: 640px) {
  .map-embed { aspect-ratio: 16 / 9; }
}
@media (min-width: 1024px) {
  .map-embed { aspect-ratio: 21 / 9; }
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}
.contact-form { max-width: 560px; }
.form-field { margin-bottom: 1.3rem; }
.form-field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .5rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: .85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(126, 26, 23, .12);
}
.form-optional { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--steel); }
.form-privacy { font-size: .85rem; color: var(--steel); text-align: left; }

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

.form-status {
  margin: 1.1rem 0 0;
  font-size: .92rem;
  font-weight: 600;
  min-height: 1.3em;
}
.form-toast {
  margin: 1.1rem 0 0;
  padding: 0;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.5;
  text-align: left;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  scroll-margin-top: 90px;
  transition: max-height .3s ease, opacity .3s ease, padding .3s ease, margin .3s ease;
}
.form-toast.is-visible {
  max-height: 10em;
  opacity: 1;
  padding: .9rem 1.2rem;
  margin-bottom: 1.5rem;
}
.form-toast.is-success {
  background: #cdeed9;
  color: #1b6b3f;
}
.form-toast.is-error {
  background: #e2554c;
  color: #ffffff;
}

.legal { font-size: .97rem; }
.legal h2 { font-size: var(--step-1); margin-top: 2.6rem; }
.legal h3 { font-size: var(--step-0); margin-top: 1.8rem; font-weight: 700; }
.legal-list dt {
  color: var(--ink);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 1.6rem;
}
.legal-list dd { margin: .35rem 0 0; }
.legal-stand {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--steel);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .62);
  font-size: .93rem;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.5rem;
}
.footer-brand img { display: block; height: 68px; width: auto; max-width: 240px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .93rem; max-width: 30ch; }
.footer-title {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1.1rem;
}
.site-footer address { font-style: normal; margin-bottom: 1rem; }
.site-footer strong { color: var(--paper); }
.site-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.site-footer a:hover { color: var(--paper); text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.4rem var(--gutter);
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: .84rem;
}
.footer-bottom p { margin: 0; }
.credit { color: rgba(255, 255, 255, .5); }
.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  cursor: pointer;
}
.cookie-settings-link:hover { color: var(--paper); text-decoration: underline; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-list {
    position: fixed;
    inset: 64px 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    padding: 1rem var(--gutter) 3rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
  }
  .nav-list[data-open="true"] { transform: translateX(0); }

  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-list a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 1.05rem .2rem;
    font-size: .95rem;
  }
  .nav-list a.is-active { box-shadow: none; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 .6rem .2rem;
    min-width: 0;
    display: none;
  }
  .has-dropdown[data-open="true"] .dropdown { display: block; }
  .dropdown a { padding: .65rem .2rem; color: var(--steel); }
}

@media (max-width: 520px) {
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .pull-quote { text-align: left; }
}

@media print {
  .site-header, .cta-band, .site-footer, .hero-actions { display: none; }
  body { color: #000; }
  .hero, .page-hero { background: none; color: #000; }
  .hero h1, .page-hero h1 { color: #000; }
  .hero::before, .hero::after { display: none; }
}
