:root {
  --coral: #ff4b4b;
  --gray: #d3d1d1;
  --text: #111111;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--gray);
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

.site-navbar {
  background: var(--coral);
  box-shadow: 0 1px 0 rgba(0,0,0,.15);
  padding-top: .45rem;
  padding-bottom: .45rem;
}

.brand-name,
.nav-link {
  color: #111;
  font-style: italic;
  font-size: clamp(1rem, 1.9vw, 2rem);
  line-height: 1.1;
}

.brand-name {
  letter-spacing: .01em;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus,
.nav-link:hover,
.nav-link:focus {
  color: #111;
  opacity: .85;
}

.navbar-toggler {
  border-color: rgba(0,0,0,.35);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817,17,17,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

section, footer {
  scroll-margin-top: 78px;
}

.section-gray { background: var(--gray); }
.section-coral { background: var(--coral); }

.hero-section {
  padding: 5.5rem 0 1.25rem;
}

.hero-logo {
  width: min(92vw, 760px);
  height: auto;
}

.section-title,
.footer-title {
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 2rem;
}

.gallery-section {
  padding: 1.2rem 0 2.4rem;
}

.gallery-row.top-row {
  margin-bottom: .65rem;
}

.gallery-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 6px rgba(255,255,255,.08);
}

.content-section {
  padding: 1.6rem 0 7.5rem;
  min-height: 400px;
}

.about-copy,
.testimonial-copy,
.contact-info,
.footer-copy {
  font-size: clamp(1.35rem, 2.6vw, 2.8rem);
  line-height: 1.75;
}

.about-copy {
  max-width: 1420px;
}

.about-copy p {
  text-align: left;
  margin: 0;
}

.quote-section {
  padding: 1.8rem 0 4.3rem;
  min-height: 360px;
}

.testimonial-title {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.testimonial-copy {
  max-width: 1450px;
  text-align: left;
  margin-bottom: 0;
}

.contact-section {
  min-height: 520px;
}

.contact-info {
  max-width: 1200px;
  line-height: 1.55;
}

.contact-info a,
.footer-copy a {
  color: inherit;
  text-decoration: none;
}

.site-footer {
  padding: 1.2rem 0 1.6rem;
}

.site-footer .footer-title {
  margin-bottom: .65rem;
  font-size: clamp(2.1rem, 4.4vw, 3.9rem);
  text-align: center;
}

.footer-copy {
  text-align: center;
  line-height: 1.45;
  font-size: clamp(1.25rem, 2.3vw, 2.4rem);
}

.social-links img {
  width: clamp(72px, 9vw, 126px);
  height: auto;
  object-fit: contain;
  display: block;
}

.image-modal-content {
  background: #efefef;
}

.modal-header {
  border-bottom-color: rgba(0,0,0,.08);
}

.modal-title {
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  .navbar-nav {
    gap: 1rem;
  }

  .gallery-row.top-row .col-lg-4,
  .gallery-row.bottom-row .col-lg-4 {
    max-width: 28.333%;
  }

  .gallery-row.bottom-row {
    justify-content: center;
    gap: 1.2rem;
  }
}

@media (max-width: 991.98px) {
  .brand-name {
    max-width: calc(100% - 60px);
    white-space: normal;
  }

  .navbar-collapse {
    background: rgba(255, 75, 75, .98);
    margin-top: .6rem;
    padding: .4rem .1rem .5rem;
  }

  .nav-link {
    padding-top: .35rem;
    padding-bottom: .35rem;
    font-size: 1.35rem;
  }

  .hero-section {
    padding-top: 6.2rem;
  }

  .content-section,
  .contact-section,
  .quote-section {
    min-height: auto;
  }

  .about-copy p,
  .testimonial-copy {
    text-align: center;
  }
}
