/* ==========================================================================
   Groovy Photo Bus — shared stylesheet
   Rebuilt by hand. No page builder output.
   ========================================================================== */

:root {
  --sage:       #cfd0c4;   /* header + footer band */
  --card-blue:  #d3e6f1;   /* service cards */
  --ink:        #111111;
  --muted:      #7c7c7c;
  --rule:       #111111;
  --max:        1000px;
  --gutter:     24px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: var(--ink);
  font-family: "Abel", "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a { color: inherit; }

main { flex: 1 0 auto; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  background: var(--sage);
  position: relative;
  z-index: 20;
}

.site-header__bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { text-decoration: none; display: block; }

.brand__name {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.2px;
}

.brand__tagline {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.2px;
  color: #2c2c2c;
}

/* Hamburger */
.nav-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  line-height: 0;
}

.nav-toggle__bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) 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(-7px) rotate(-45deg);
}

/* Drop-down panel with the three pill buttons */
.site-nav {
  background: var(--sage);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.site-nav.is-open { max-height: 320px; }

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 22px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.site-nav__link {
  display: block;
  min-width: 110px;
  text-align: center;
  padding: 12px 22px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  background: #ffffff;
}

/* --------------------------------------------------------------------------
   Home slideshow
   -------------------------------------------------------------------------- */

.slideshow {
  position: relative;
  width: 100%;
  height: 68vh;
  min-height: 380px;
  max-height: 760px;
  overflow: hidden;
  background: #2a2a2a;
}

.slideshow__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slideshow__slide.is-active { opacity: 1; }

.slideshow__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 9px;
  z-index: 2;
}

.slideshow__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slideshow__dot.is-active { background: #ffffff; }

/* --------------------------------------------------------------------------
   Generic page sections
   -------------------------------------------------------------------------- */

.section { padding: 80px 0; }

.section--tight { padding: 60px 0; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-family: "Montserrat", Arial, sans-serif;
}

.display {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  margin: 0;
}

.display--center { text-align: center; }

.rule {
  border: 0;
  border-top: 3px solid var(--rule);
  width: 275px;
  max-width: 100%;
  margin: 22px 0 30px;
}

.lead {
  text-align: center;
  max-width: 740px;
  margin: 14px auto 0;
  font-size: 17px;
}

.prose { max-width: 545px; }

.prose p { margin: 0 0 18px; }

.figure { max-width: 545px; margin: 34px 0 0; }

.figure img { width: 100%; height: auto; }

.figure figcaption {
  margin-top: 16px;
  font-size: 15px;
}

.about-inner {
  max-width: 545px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 46px;
}

.card {
  background: var(--card-blue);
  padding: 46px 28px;
}

.card__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0;
}

.card__rule {
  border: 0;
  border-top: 2px solid var(--rule);
  width: 42px;
  margin: 16px 0 18px;
}

.card__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.email-button {
  display: inline-block;
  margin: 30px auto 0;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease;
}

.email-button:hover { background: var(--ink); color: #ffffff; }

.center { text-align: center; }

.contact-panel {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 60px 24px 70px;
  color: #ffffff;
  margin-bottom: 0;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 38, 28, 0.45);
}

.contact-panel > * { position: relative; }

.contact-panel__title {
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 34px;
}

.contact-form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  color: #333;
}

.contact-form textarea { min-height: 92px; resize: vertical; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6f6f6f; }

.contact-form__send {
  align-self: center;
  margin-top: 16px;
  padding: 13px 30px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.contact-form__send:hover { background: #ffffff; color: var(--ink); }

.photo-credit {
  text-align: center;
  font-size: 12px;
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.photo-credit a { color: inherit; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--sage);
  padding: 46px 24px 54px;
  text-align: center;
}

.social {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2b2b2b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}

.social a:hover { background: #000000; }

.social svg { width: 15px; height: 15px; fill: currentColor; }

.site-footer address {
  font-style: normal;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.6px;
  line-height: 1.9;
  text-transform: uppercase;
  color: #6f6f6f;
}

/* --------------------------------------------------------------------------
   Small screens
   -------------------------------------------------------------------------- */

@media (max-width: 720px) {
  .section { padding: 54px 0; }
  .brand__name { font-size: 21px; }
  .brand__tagline { font-size: 11px; }
  .display { font-size: 24px; }
  .cards { grid-template-columns: 1fr; }
  .card { padding: 34px 22px; }
  .slideshow { height: 52vh; min-height: 300px; }
}
