* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dot-color: #fc6464;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f5ef;
  color: #222;
  line-height: 1;
  padding-bottom: 130px;
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
  gap: 1px;
}

.branding title {
    font-family: "Bodoni Moda", serif;
    font-size: 4.5rem;
    margin-bottom: 1px;
}

.branding h1 {
  font-family: "Playfair", serif;
  font-size: 72px;
  font-style: bold;
  font-weight: 900;
  font-variation-settings: 'opsz' 16;
  margin-bottom: 1px;
}

.site-header .site-title-link,
.site-header .site-title-link:visited,
.site-header .site-title-link:hover,
.site-header .site-title-link:active,
.site-header .site-title-link:focus {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.branding h2 {
  font-family: "Jost", serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 1px;
  text-align:center;
}

.branding h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.48em;
  padding: 15px 0;
  margin-bottom: 1px;
  color: #949090;
}

.branding h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.58em;
  padding: 15px 0;
  margin-bottom: 1px;
  color: #ff0000;
}


.small-branding h1 {
  font-size: 2rem;
}

.top-nav {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 14px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  color: #000000;
}

.top-nav a {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: center;
  text-decoration: none;
  color: #949090;
  letter-spacing: 0.10em;
  font-weight: 500;
  padding: 1px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.top-nav a:hover {
  color: #000000;
  border-color: var(--dot-color);
}

.top-nav a[aria-current="page"] {
  color: #000000;
  border-color: rgba(252, 100, 100, 0.55);
}

.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 72px;
  padding: 60px 48px 0;
}

.hero-content {
  max-width: 700px;
  align-self: center;
  text-align: center;
}

.quote-rotator {
  position: relative;
  width: 100%;
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
}

.quote-rotator__pair {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: 100%;
}

.quote-rotator__line {
  max-width: 1400px;
  font-family: "Onest", sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 4rem);
  font-style: normal;
  font-weight: 300;
  color: #38322d;
  line-height: 1.3;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.quote-rotator__line strong {
  font-family: "Onest", sans-serif;
  color: var(--dot-color);
  font-weight: 300;
  font-style: italic;
}

.quote-rotator.is-ready .quote-rotator__line {
  opacity: 0;
  transform: translateY(10px);
}

.quote-rotator.is-ready .quote-rotator__line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #555;
}

.hero-content .faint {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.10em;
  text-align: center;
  line-height: 1.5;
  color: #949090;
}

.hero-content .default {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-align: center;
  line-height: 1.5;
  color: #949090;
}

.hero-content .small {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-align: center;
  line-height: 1.5;
  color: #949090;
}


.hero-content .small-content {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-align: center;
  line-height: 1.5;
  color: #080808;
}

.hero-content .small-title {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.48em;
  text-align: center;
  line-height: 1.5;
  color: #ff0000;
}

.about-intro {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
}

.about-intro__image {
  flex: 0 0 360px;
}

.about-intro__image .branding__image {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

.about-intro__copy {
  flex: 1 1 0;
  max-width: 700px;
  min-height: clamp(300px, 34vw, 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.about-intro__copy .small-title,
.about-intro__copy .small-content {
  display: block;
  text-align: left;
}

.about-intro__copy .small-title {
  margin-bottom: 18px;
}

.about-intro__copy .small-content {
  font-size: clamp(0.92rem, 0.94vw, 1rem);
  line-height: 1.5;
}

.about-section-copy {
  text-align: left;
}

.about-section-copy .small-title,
.about-section-copy .small-content {
  display: block;
  text-align: left;
}

.about-section-copy .small-title {
  margin-bottom: 24px;
}

.brand-marquee {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  gap: 24px;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.brand-marquee__track {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: max-content;
  animation: brand-marquee-scroll 36s linear infinite;
}

.brand-marquee__item {
  min-width: 150px;
  height: 72px;
  padding: 0 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 50, 45, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #38322d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-marquee__item--dark {
  background: #1b1b1b;
  border-color: rgba(27, 27, 27, 0.8);
}

.brand-marquee__image {
  display: block;
  max-width: 100%;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-marquee__image--wide {
  max-height: 44px;
}

.brand-marquee__image--icon {
  max-height: 42px;
}

@keyframes brand-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 24px));
  }
}

.bottom-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 160px;
  padding: 18px 48px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #f8f5ef;
  background-image:
    linear-gradient(180deg, rgba(248, 245, 239, 0) 0%, rgba(248, 245, 239, 0.16) 38%, rgba(248, 245, 239, 0.28) 100%),
    radial-gradient(ellipse 50% 120% at 50% 122%, rgba(255, 160, 186, 0.24) 0%, rgba(255, 160, 186, 0.16) 24%, rgba(255, 160, 186, 0.08) 38%, rgba(255, 160, 186, 0) 58%),
    radial-gradient(ellipse 40% 92% at 50% 116%, rgba(244, 73, 105, 0.9) 0%, rgba(238, 64, 92, 0.82) 26%, rgba(208, 32, 70, 0.72) 44%, rgba(168, 20, 54, 0.48) 60%, rgba(168, 20, 54, 0.16) 74%, rgba(168, 20, 54, 0) 86%),
    radial-gradient(ellipse 22% 40% at 50% 104%, rgba(255, 214, 224, 0.48) 0%, rgba(255, 214, 224, 0.16) 34%, rgba(255, 214, 224, 0) 66%);
  background-position: center;
  background-size: cover;
  color: #6a2333;
  z-index: 20;
}

.bottom-banner__content {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.bottom-banner__eyebrow {
  margin: 0 auto 14px;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.bottom-banner__eyebrow:hover {
  color: rgba(233, 233, 233, 0.95);
}

.bottom-banner__eyebrow span:last-child {
  font-size: 1rem;
  line-height: 1;
}

.bottom-banner h2 {
  font-family: "Spectral", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto;
}


.page-content {
  align-items: center;
  font-size: 3rem;
  margin-bottom: 20px;  
  text-align: center;
  max-width: 800px;
  padding: 60px 48px;
}

.page-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.page-content p {
  font-size: 3rem;
  margin-bottom: 20px;
  align-items: center;
  text-align: center;
  margin-bottom: 16px;
  color: #444;
}

.contact-page {
  padding-top: 24px;
}

.contact-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 40px;
  border: 1px solid rgba(56, 50, 45, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 36px rgba(56, 50, 45, 0.08);
}

.contact-card .small-title {
  display: block;
  margin-bottom: 20px;
  text-align: left;
}

.contact-intro {
  margin-bottom: 28px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: left;
  color: #38322d;
}

.contact-email-link {
  display: inline-block;
  font-family: "Onest", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fc6464;
  text-decoration: none;
  border-bottom: 1px solid rgba(252, 100, 100, 0.4);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-email-link:hover {
  color: #f04f4f;
  border-color: rgba(240, 79, 79, 0.75);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form__field {
  display: grid;
  gap: 10px;
}

.contact-form__field span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a5f59;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(56, 50, 45, 0.18);
  border-radius: 18px;
  background: rgba(248, 245, 239, 0.92);
  color: #38322d;
  font-family: "Onest", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(252, 100, 100, 0.82);
  box-shadow: 0 0 0 4px rgba(252, 100, 100, 0.12);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form__submit {
  justify-self: start;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: #fc6464;
  color: #fffaf6;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form__submit:hover {
  transform: translateY(-1px);
  background: #f04f4f;
  box-shadow: 0 12px 24px rgba(240, 79, 79, 0.24);
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 24px;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero {
    gap: 48px;
    padding: 48px 24px;
  }

  .about-intro {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .about-intro__image,
  .about-intro__copy {
    flex: none;
    width: 100%;
    max-width: 700px;
  }

  .about-intro__copy {
    min-height: auto;
  }

  .about-intro__copy,
  .about-intro__copy .small-title,
  .about-intro__copy .small-content {
    text-align: center;
  }

  .quote-rotator {
    min-height: 180px;
  }

  .bottom-banner {
    min-height: 100px;
    padding: 16px 24px 18px;
  }

  .brand-marquee__item {
    min-width: 132px;
    height: 64px;
    font-size: 0.82rem;
  }

  .brand-marquee__image {
    max-height: 30px;
  }

  .brand-marquee__image--wide,
  .brand-marquee__image--icon {
    max-height: 36px;
  }

  .contact-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .contact-form__submit {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 110px;
  }

  .bottom-banner {
    min-height: 110px;
  }

  .bottom-banner h2 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-rotator__line {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brand-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .brand-marquee__track {
    animation: none;
  }
}

.dot {
  color: var(--dot-color);
}

.section-divider {
  width: 90%;
  margin: 1rem auto;
  border: none;
  border-top: 1px solid rgba(56, 50, 45, 0.14);
}


