@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --navy:        #0F2035;
  --navy-light:  #1D3557;
  --navy-dark:   #0A1520;
  --gold:        #D4A373;
  --gold-dark:   #c4935f;
  --mist:        #F1F4F8;
  --white:       #FFFFFF;
  --text-dark:   #0F2035;
  --text-mid:    #444444;
  --text-muted:  #777777;
  --border:      #E0E5ED;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --container-max: 1100px;
  --section-pad: 80px 0;
  --section-pad-mobile: 48px 0;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.1rem; line-height: 1.3; }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad); }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 13px 26px;
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 13px 26px;
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.nav-logo-location {
  color: var(--gold);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-overlay a:hover { color: var(--gold); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.footer-logo-location {
  color: var(--gold);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   Sticky Mobile CTA Bar
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--navy);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
}
.mobile-cta-bar .cta-call {
  background: var(--gold);
  color: var(--navy);
}
.mobile-cta-bar .cta-tour {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-sm { height: 60vh; min-height: 400px; }
.hero-xs { height: 50vh; min-height: 340px; }
.hero-text-only {
  height: auto;
  min-height: 0;
  background: var(--navy);
  padding: 80px 0 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 21, 32, 0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
  color: var(--white);
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-trust {
  margin-top: 24px;
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   Hero Carousel
   ============================================================ */
.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.carousel-img.active {
  opacity: 1;
}
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.carousel-dot.active {
  background: #fff;
}
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255,255,255,0.3);
}
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

/* ============================================================
   Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--mist);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 28px;
  letter-spacing: 0.02em;
}
.trust-sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   Intro Section
   ============================================================ */
.intro-section .intro-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.intro-section h2 { margin-bottom: 20px; }
.intro-section p { margin-bottom: 16px; }

/* ============================================================
   Testimonial Cards (strip / full page)
   ============================================================ */
.testimonials-strip { background: var(--mist); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.testimonial-card .author {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.testimonials-link {
  display: block;
  text-align: center;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.testimonials-link:hover { color: var(--gold); }

/* Full testimonial blocks (testimonials.html) */
.testimonial-block {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  margin-bottom: 32px;
}
.testimonial-block blockquote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 8px;
}
.testimonial-block blockquote + blockquote { margin-top: 20px; }
.testimonial-block .author {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.875rem;
  font-variant: small-caps;
  letter-spacing: 0.06em;
  margin-top: 16px;
}
.testimonial-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ============================================================
   Feature Cards — Why Families Choose Us
   ============================================================ */
.features-section { background: var(--white); }
.features-section h2 { margin-bottom: 36px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.feature-card .icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-mid); }

/* Bottom row centering for 5-card grid */
.features-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-row-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.features-row-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: calc(66.666% + 10px);
  margin: 0 auto;
  width: 100%;
}

/* ============================================================
   Services Snapshot (home page list)
   ============================================================ */
.services-list { margin-top: 28px; }
.services-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.services-list-item:first-child { border-top: 1px solid var(--border); }
.services-list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.services-list-item strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* ============================================================
   Our Home Photo Row (home page)
   ============================================================ */
.home-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.home-photo-row img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-list { margin-top: 28px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  gap: 16px;
}
.faq-question:hover { color: var(--navy-light); }
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gold);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 20px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   CTA Block (navy)
   ============================================================ */
.cta-block {
  background: var(--navy);
  text-align: center;
  padding: var(--section-pad);
}
.cta-block h2 { color: var(--white); margin-bottom: 16px; }
.cta-block p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1rem;
}
.cta-block .address-line {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* ============================================================
   Services Page — alternating sections
   ============================================================ */
.service-section {
  padding: var(--section-pad);
}
.service-section:nth-child(odd) { background: var(--white); }
.service-section:nth-child(even) { background: var(--mist); }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-text h2 { margin-bottom: 16px; }
.service-text p { color: var(--text-mid); }

.service-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-text-only { max-width: 680px; margin: 0 auto; }

/* ============================================================
   Our Home Page — Gallery
   ============================================================ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.gallery-grid .gallery-full {
  grid-column: 1 / -1;
  height: 380px;
}

/* ============================================================
   About Page
   ============================================================ */
.owner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.owner-row img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.owner-text h2 { margin-bottom: 20px; }
.owner-text p { margin-bottom: 16px; color: var(--text-mid); }

.values-section { background: var(--mist); }
.values-section h2 { margin-bottom: 20px; }
.values-section p { max-width: 640px; color: var(--text-mid); }
.pull-quote {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: 24px;
  font-style: italic;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-detail { display: flex; flex-direction: column; gap: 20px; }
.contact-item h4 {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--text-mid);
}
.contact-item a:hover { color: var(--navy); }

.map-embed {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: none;
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   Section text-only blocks
   ============================================================ */
.section-intro { max-width: 680px; margin-bottom: 40px; }
.section-intro h2 { margin-bottom: 16px; }
.section-intro p { color: var(--text-mid); }

/* ============================================================
   Two-column text sections (home visual block, etc.)
   ============================================================ */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.two-col-text h3 { margin-bottom: 10px; }
.two-col-text p { font-size: 0.95rem; color: var(--text-mid); }

/* ============================================================
   Utility: Section link
   ============================================================ */
.section-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.section-link:hover { color: var(--gold); }

/* Heading with eyebrow stack */
.section-heading { margin-bottom: 8px; }

/* ============================================================
   Mist background sections
   ============================================================ */
.bg-mist { background: var(--mist); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }

/* ============================================================
   Responsive — Tablet (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .features-row-top { grid-template-columns: 1fr 1fr; }
  .features-row-bottom { grid-template-columns: 1fr; max-width: 100%; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .owner-row { grid-template-columns: 1fr; }
  .owner-row img { height: 280px; order: -1; }

  .service-row { grid-template-columns: 1fr; gap: 28px; }
  .service-row.reverse { direction: ltr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-full { height: 260px; }
  .gallery-grid img { height: 220px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col-text { grid-template-columns: 1fr; }
}

/* ============================================================
   Responsive — Mobile (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  section { padding: var(--section-pad-mobile); }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }

  .hero { height: 60vh; }
  .hero-sm { height: 50vh; }
  .hero-xs { height: 44vh; }
  .hero-text-only { padding: 56px 0 52px; }

  .trust-bar-inner { flex-direction: column; gap: 12px; }
  .trust-sep { display: none; }
  .trust-item { padding: 4px 0; text-align: center; }

  .features-row-top { grid-template-columns: 1fr; }
  .features-row-bottom { grid-template-columns: 1fr; max-width: 100%; }

  .home-photo-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .home-photo-row img {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > :first-child { grid-column: auto; }

  .mobile-cta-bar { display: flex; }

  .cta-block { padding: var(--section-pad-mobile); }

  body { padding-bottom: 64px; }

  .testimonial-block { padding: 24px 20px; }

  .pull-quote { font-size: 1.4rem; }
}
