/* LP Collective KC — replica of the Google Sites original.
   Type values below are the original's computed styles, not approximations. */

:root {
  --rose: #e06666;
  --rose-light: #ea9999;
  --ink: #212121;
  --dusty: #cca6b2;
  --nav-idle: rgba(0, 0, 0, .64);
  --content: 1145px;
  --hdr-title: #000;
  --hdr-active: #000;
}

* { box-sizing: border-box; }

html, body { overflow-x: clip; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 28px;
  -webkit-font-smoothing: antialiased;
}

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

/* The original renders its content inside a compositing layer, which drops LCD
   subpixel antialiasing in favour of grayscale. Promote ours the same way so
   glyph edges rasterise identically. (-webkit-font-smoothing is a no-op on
   Windows, so it cannot do this on its own.) */
main, .site-header, .site-footer { transform: translateZ(0); }

a { color: inherit; }

.wrap {
  /* the original's content box: a 1154px cap, below which the side padding is
     46px + 1.31% of the viewport. Fitted at 991 / 1262 / 1391 / 1591 client px. */
  width: min(1154px, calc(97.38% - 92px));
  margin: 0 auto;
  padding: 0;
}

/* ---------- header ---------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 60px 0 16px;
  height: 56px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 64px;
  height: 40px;
  margin-left: 12px;
  object-fit: fill;
}

.brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  padding: 16px 12px;
  color: var(--hdr-title);
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 14.6667px;
  font-weight: 400;
  line-height: 28px;
  color: var(--nav-idle);
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease;
}

.site-nav a:hover { color: var(--hdr-active); }

.site-nav a[aria-current="page"] {
  font-weight: 700;
  color: var(--hdr-active);
}

.nav-toggle, .nav-toggle-label { display: none; }

/* ---------- banner ---------- */

.banner {
  position: relative;
  height: 360px;
  background-color: var(--dusty);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.banner-box {
  margin-top: 96px;
  width: 59.27%;
  height: 168px;
  border: 6px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.banner h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 79.92px;
  letter-spacing: -0.8px;
  text-align: center;
}

/* ---------- shared type ---------- */

.section-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26.6667px;
  font-weight: 500;
  line-height: 46.6667px;
  color: var(--rose);
}

.lede {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26.6667px;
  font-weight: 400;
  line-height: 41.6px;
  color: var(--rose);
  text-align: center;
}

/* ---------- home: hero line ---------- */

.hero-line {
  margin: 32px 0 0;
  /* indent measured at two widths: 16.64% of the content box + 120px */
  padding-left: calc(16.64% + 120px);
  width: 100%;
}

.hero-line p {
  margin: 0;
  width: auto;
  padding-left: 0;
  white-space: nowrap;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 28px;
}

/* ---------- home: offers ---------- */

.offers-title { margin-top: 64px; padding-left: 429px; }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.56%;
  margin-top: 56px;
}

.cards-3 figure { margin: 0; }

.cards-3 img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cards-3 figcaption {
  margin-top: 23px;
  padding: 0 8px;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18.6667px;
  font-weight: 400;
  line-height: 29.12px;
  color: var(--rose-light);
}

/* ---------- home: values ---------- */

.values-title { margin-top: 74px; padding-left: 501px; }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.56%;
  margin-top: 55px;
}

.values figure { margin: 0; }

.values img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.values figcaption {
  margin-top: 15px;
  padding: 0 8px;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
}

.values .v-name {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}

.values figure:nth-child(1) .v-name { font-size: 18.6667px; line-height: 32.6667px; color: var(--rose); }
.values figure:nth-child(2) .v-name { font-size: 17.3333px; line-height: 30.3333px; color: var(--rose-light); }
.values figure:nth-child(3) .v-name { font-size: 17.3333px; line-height: 30.3333px; color: var(--rose); }
.values figure:nth-child(4) .v-name { font-size: 16px; line-height: 28px; color: var(--rose-light); }

/* ---------- home: who we work with ---------- */

.who-title { margin-top: 70px; padding-left: 429px; }

.who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.56%;
  margin-top: 56px;
}

.who figure { margin: 0; }

.who img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.who .w-name {
  display: block;
  margin-top: 23px;
  padding: 0 8px;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18.6667px;
  font-weight: 500;
  line-height: 29.12px;
  color: var(--rose);
}

.who .w-body {
  display: block;
  margin-top: 18px;
  padding: 0 8px;
  text-align: center;
  line-height: 28px;
}

/* ---------- home: founder ---------- */

.founder {
  display: grid;
  grid-template-columns: 43.43% 56.57%;
  margin-top: 62px;
  align-items: start;
}

.founder-photo {
  width: 53.14%;
  margin-left: 19.66%;
}

.founder-photo img {
  width: 100%;
  height: 464px;
  object-fit: cover;
}

.founder-copy { padding-left: 0; width: 98.75%; }

.founder-copy h2 {
  margin: 31px 0 0;
  padding-left: 15.4%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26.6667px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: -0.6px;
  color: var(--rose);
  text-align: left;
}

.founder-copy p {
  margin: 31px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 22.08px;
}

.founder-copy p + p { margin-top: 15px; }

/* the original's Merriweather italic face is weight 400, not 300 */

/* ---------- home: cta ---------- */

.cta {
  width: 47.31%;
  margin: 51px auto 0;
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26.6667px;
  font-weight: 400;
  line-height: 41.6px;
  color: #000;
}

.cta p {
  margin: 29px 0 0;
  font-style: italic;
  line-height: 28px;
}

.btn {
  display: block;
  width: 31.62%;
  margin: 62px auto 0;
  padding: 7px 12px;
  background: var(--dusty);
  border: 1px solid #000;
  border-radius: 4px;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  transition: filter .18s ease;
}

.cta .btn { width: 66.8%; }

.btn:hover { filter: brightness(1.06); }

/* ---------- services page ---------- */

.svc-lede {
  width: 64.40%;
  margin: 32px auto 0;
}

.svc-intro {
  width: 47.31%;
  margin: 64px auto 0;
  text-align: center;
  line-height: 28px;
}

.svc-row {
  display: grid;
  grid-template-columns: 40.17% 56.57%;
  gap: 0 3.26%;
  margin-top: 48px;
  align-items: start;
}

.svc-row:first-of-type { margin-top: 56px; }

.svc-row img {
  width: 100%;
  object-fit: cover;
}

.svc-copy { padding-top: 30px; text-align: left; }

.svc-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25.3333px;
  font-weight: 400;
  line-height: 36.48px;
  letter-spacing: -0.6px;
  color: var(--rose);
}

.svc-copy .desc {
  margin: 34px 0 0;
  line-height: 28px;
}

.svc-copy .includes {
  margin: 15px 0 0;
  font-weight: 700;
  line-height: 28px;
}

.svc-copy ul {
  margin: 6px 0 0;
  padding-left: 0;
  list-style: square;
}

.svc-copy li {
  margin-left: 3.11%;
  line-height: 28px;
}

.svc-copy .note {
  margin: 34px 0 0;
  font-size: 14.6667px;
  font-weight: 700;
  line-height: 25.6667px;
}

.packages {
  width: 81.50%;
  margin: 62px auto 0;
}

.packages h2 {
  margin: 0;
  padding-left: 1.58%;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25.3333px;
  font-weight: 500;
  line-height: 44.3333px;
  color: var(--rose);
}

.packages p {
  margin: 28px 0 0;
  text-align: center;
  line-height: 28px;
}

/* ---------- testimonials page ---------- */

.t-lede { width: 47.70%; margin: 32px auto 0; }

.quotes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.56%;
  margin-top: 64px;
}

.quotes figure { margin: 0; padding: 0 8px; }

.quotes blockquote {
  margin: 0;
  text-align: center;
  line-height: 28px;
}

.quotes cite {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-style: normal;
  line-height: 28px;
}

.collab-band {
  background: #fafafa;
  margin-top: 32px;
  padding: 41px 0 21px;
}

.collab {
  margin: 0;
  text-align: center;
  font-size: 17.3333px;
  font-weight: 600;
  line-height: 30.3333px;
  color: #000;
}

.collab-body {
  width: 77.5%;
  margin: 29px auto 0;
  text-align: center;
  color: #000;
  line-height: 28px;
}

.collab-band .btn { margin-top: 60px; }

/* ---------- faq page ---------- */

.faq-heading {
  margin: 38px 0 0;
  padding-left: 26.34%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26.6667px;
  font-weight: 400;
  line-height: 41.6px;
  color: #000;
}

.faq-jump { margin: 14px 0 0; padding-left: 26.34%; }

.faq-jump a {
  display: block;
  margin-bottom: 15px;
  line-height: 28px;
  color: var(--ink);
  text-decoration: underline;
}

.faq-list { margin: 56px 0 0 26.34%; width: 55.86%; }

.faq-item + .faq-item { margin-top: 64px; }

.faq-item h3 {
  margin: 0;
  font-size: 17.3333px;
  font-weight: 600;
  line-height: 30.3333px;
  color: #000;
}

.faq-item p {
  margin: 15px 0 0;
  line-height: 28px;
}

.getintouch {
  margin: 64px 0 0;
  padding-left: 26.34%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26.6667px;
  font-weight: 500;
  line-height: 46.6667px;
  color: var(--rose);
}

.getintouch-body {
  margin: 64px 0 0;
  padding: 0 8px 0 16px;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}

.ig-link {
  display: block;
  width: 32px;
  margin: 59px auto 0;
}

.ig-link img { width: 32px; height: 32px; }

/* ---------- footer ---------- */

.site-footer {
  margin-top: 58px;
  padding-bottom: 29px;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
}

.site-footer a { color: var(--ink); text-decoration: underline; }

.site-footer .sep { white-space: pre; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .wrap { width: 100%; padding: 0 20px; }

  .site-header { padding: 0 16px; }

  .brand span { font-size: 20px; }

  .nav-toggle-label {
    display: block;
    margin-left: auto;
    width: 24px;
    height: 18px;
    cursor: pointer;
    position: relative;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--hdr-active);
    transition: transform .25s ease, opacity .25s ease;
  }

  .nav-toggle-label span { top: 8px; }
  .nav-toggle-label span::before { top: -7px; }
  .nav-toggle-label span::after { top: 7px; }

  .site-nav {
    position: absolute;
    top: 56px;
    right: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .18);
    padding: 8px 0;
    min-width: 190px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
  .nav-toggle:checked ~ .nav-toggle-label span::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span::after { transform: translateY(-7px) rotate(-45deg); }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: rgba(0, 0, 0, .64);
  }

  .site-nav a[aria-current="page"] { color: #000; }

  .banner { height: 240px; }
  .banner-box { margin-top: 60px; height: auto; padding: 16px; width: 84%; }
  .banner h1 { font-size: 40px; line-height: 1.15; }

  .hero-line { padding-left: 0; }
  .hero-line p { width: 100%; padding-left: 0; white-space: normal; text-align: center; }

  .offers-title,
  .values-title,
  .who-title { padding-left: 0; text-align: center; }

  .cards-3, .who { grid-template-columns: 1fr; gap: 40px; }
  .values { grid-template-columns: repeat(2, 1fr); gap: 30px; }

  .founder { grid-template-columns: 1fr; }
  .founder-photo { margin: 0 auto; }
  .founder-copy { padding-left: 0; margin: 0 auto; }
  .founder-copy h2 { padding-left: 0; text-align: center; margin-top: 34px; }
  .founder-copy p br { display: none; }

  .cta { width: 100%; }

  .svc-lede, .svc-intro, .packages, .collab-body { width: 100%; }
  .svc-row { grid-template-columns: 1fr; gap: 28px; margin-top: 60px; }
  .svc-row img { margin: 0 auto; }
  .svc-copy { padding-left: 0; padding-top: 0; }
  .svc-copy ul { padding-left: 4px; }

  .quotes { grid-template-columns: repeat(2, 1fr); gap: 36px; }

  .faq-heading, .faq-jump, .faq-list, .getintouch, .getintouch-body { padding-left: 0; }
  .faq-heading, .getintouch { text-align: center; }
}

@media (max-width: 560px) {
  .values, .quotes { grid-template-columns: 1fr; }
  .banner h1 { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; }
}
