/* Shared layout for product pages — same minimal black-on-white world as the top page */

@font-face {
  font-family: "Airbnb Cereal W XBd";
  src: url("/fonts/AirbnbCereal_W_XBd.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Airbnb Cereal W Bd";
  src: url("/fonts/AirbnbCereal_W_Bd.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Airbnb Cereal W Bk";
  src: url("/fonts/AirbnbCereal_W_Bk.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: "Airbnb Cereal W Bk", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.site-brand {
  display: inline-block;
  font-family: "Airbnb Cereal W XBd", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #000000;
  text-decoration: none;
  margin-bottom: 4rem;
}

.site-brand:hover {
  opacity: 0.6;
}

h1 {
  font-family: "Airbnb Cereal W XBd", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.9;
  color: #333333;
  margin-bottom: 3.5rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  font-family: "Airbnb Cereal W Bd", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

p {
  color: #333333;
}

p + p {
  margin-top: 0.8em;
}

ul {
  list-style: none;
  margin-top: 1rem;
}

ul li {
  position: relative;
  padding-left: 1.4em;
  margin: 0.7em 0;
  color: #333333;
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.55em;
  height: 0.55em;
  background: #000000;
}

ul li strong {
  color: #000000;
}

a {
  color: #000000;
  text-underline-offset: 3px;
}

a:hover {
  opacity: 0.6;
}

.cta {
  margin: 3.5rem 0 0;
  padding-top: 2.5rem;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}

.cta p {
  margin-bottom: 1.75rem;
}

.contact-btn {
  display: inline-block;
  font-family: "Airbnb Cereal W Bd", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  color: #000000;
  text-decoration: none;
  background: #ffffff;
  border: 2px solid #000000;
  padding: 0.8em 2.2em;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-btn:hover {
  background: #000000;
  color: #ffffff;
  opacity: 1;
}

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
  font-size: 0.85rem;
  color: #666666;
  text-align: center;
}

footer nav {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

footer a {
  color: #666666;
}
