/* About page — hero, mission, gallery, faq (Common Questions), contact (Get in touch). */

/* =========================================================
   Hero — "Curated with love"
   ========================================================= */
.about-hero {
  position: relative;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 1000px;
  z-index: 1;
  overflow: hidden;
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 34.1797%, rgb(0, 0, 0) 100%);
  pointer-events: none;
}
/* light: keep the top darkening (helps the light title read on the photo) but
   melt the bottom into the light page instead of a black seam. */
[data-theme="light"] .about-hero-shade {
  background-image: linear-gradient(rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.06) 30%, rgba(0, 0, 0, 0) 55%, var(--bg) 100%);
}
.about-hero-title {
  position: relative;
  z-index: 2;
  max-width: 600px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 70px;
  line-height: 67.2px;
  letter-spacing: -2.1px;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  color: var(--title);
}
/* light: the title sits over the full-bleed hero photo (which stays as-is), so
   it must remain light in both themes to read against the dark image areas. */
[data-theme="light"] .about-hero-title { color: rgba(240, 240, 240, 0.96); }

/* =========================================================
   Mission
   ========================================================= */
.mission {
  padding: 40px 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.mission-col {
  width: 100%;
  max-width: 1080px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mission-box {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.mission-label { text-align: left; }
.mission-text {
  font-family: var(--font-book);
  font-weight: 400;
  font-size: 32px;
  line-height: 41.6px;
  letter-spacing: -0.64px;
  color: var(--title);
}

/* =========================================================
   Gallery — two clipped rows of 4:5 tiles
   ========================================================= */
.gallery {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}
.gallery-rows {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.gallery-row {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.gallery-row--top { justify-content: flex-start; }
.gallery-row--bottom { justify-content: center; }
.gallery-track {
  display: flex;
  gap: 12px;
  flex: none;
}
.gallery-tile {
  width: 277.703px;
  height: 347.125px;
  border-radius: 12px;
  overflow: hidden;
  flex: none;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(ellipse 71% 66% at 50% 50%, rgba(0, 0, 0, 0) 54.5432%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

/* =========================================================
   Gradient section titles (Common Questions / Get in touch)
   ========================================================= */
.grad-text {
  display: inline-block;
  padding: 0.15em;
  margin: -0.15em;
  background-image: linear-gradient(158deg, rgba(240, 240, 240, 0.96) 0%, rgb(143, 143, 143) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* light: the light→grey fill is invisible on a white page — mirror it to a
   near-black→mid-grey gradient (same subtle sheen, now dark). */
[data-theme="light"] .grad-text {
  background-image: linear-gradient(158deg, rgba(17, 17, 17, 0.96) 0%, rgb(120, 120, 120) 100%);
}

/* =========================================================
   Common Questions (FAQ)
   ========================================================= */
.faq {
  padding: 80px 0;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-col {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.faq-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.faq-title { width: 100%; }
.faq-sub {
  max-width: 280px;
  font-family: var(--font-book);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: var(--title);
  text-align: center;
}
.faq-sub a { color: var(--nav-link); }
.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  width: 100%;
  background-color: var(--card);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 16px 16px 20px;
  transition: box-shadow var(--halo-transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
/* soft white halo (same rule as pricing's .faq-q — see components.css for
   the shared token values) — <summary> isn't in the shared registry since
   this page uses <details>/<summary> instead of a <button>. */
.faq-item summary:hover { box-shadow: var(--halo-shadow-hover); }
.faq-item summary:active { box-shadow: var(--halo-shadow-active); }
.faq-item summary:focus-visible { outline: none; box-shadow: var(--halo-shadow-focus); }
@media (prefers-reduced-motion: reduce) {
  .faq-item summary { transition-duration: 1ms; }
}
.faq-q {
  flex: 1;
  font-family: var(--font-book);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: rgb(255, 255, 255);
  text-align: left;
}
/* light: hardcoded white question text → near-black on the light card */
[data-theme="light"] .faq-q { color: var(--title); }
.faq-icon {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 160px;
  background-color: var(--border);
  border: 1px solid rgb(59, 59, 59);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* light: dark hairline → light hairline to match the light chip */
[data-theme="light"] .faq-icon { border-color: var(--outline); }
.faq-icon svg { display: block; }
.faq-item[open] .faq-icon svg { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-answer p {
  font-family: var(--font-book);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: var(--muted);
}
.faq-answer a { color: var(--nav-link); text-decoration: underline; }
.faq-answer strong { font-family: var(--font-medium); font-weight: 400; }

/* =========================================================
   Get in touch (contact)
   ========================================================= */
.contact {
  padding: 80px 0 160px;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-col {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.contact-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-title { width: 100%; }
.contact-card {
  width: 100%;
  background-color: var(--card);
  border-radius: 24px;
  overflow: hidden;
}
.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.contact-msg { display: flex; }
.contact-msg textarea {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  padding: 12px;
  background: none;
  border: 0;
  outline: none;
  appearance: none;
  font-family: var(--font-book);
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  color: var(--title);
  resize: none;
  display: block;
}
.contact-msg textarea::placeholder { color: var(--muted); opacity: 1; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-email {
  flex: 1;
  display: flex;
}
.contact-email input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  padding: 0 12px;
  font-family: var(--font-book);
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  color: rgb(153, 153, 153);
}
.contact-email input::placeholder { color: rgb(153, 153, 153); opacity: 1; }
.contact-send {
  width: 120px;
  height: 40px;
  flex: none;
  border-radius: 100px;
  background-color: var(--title);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow var(--halo-transition);
}
/* soft white halo — same values as the shared registry (components.css);
   kept local since .contact-send is specific to this page's form. */
.contact-send:hover { box-shadow: var(--halo-shadow-hover); }
.contact-send:active { box-shadow: var(--halo-shadow-active); }
.contact-send:focus-visible { outline: none; box-shadow: var(--halo-shadow-focus); }
@media (prefers-reduced-motion: reduce) {
  .contact-send { transition-duration: 1ms; }
}
.contact-send p {
  font-family: var(--font-medium);
  font-weight: 400;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: -0.16px;
  color: var(--card);
}
.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-links p {
  max-width: 280px;
  font-family: var(--font-book);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: var(--title);
  text-align: center;
}
.contact-links a { color: var(--nav-link); }

/* =========================================================
   Tablet <= 1199.98
   ========================================================= */
@media (max-width: 1199.98px) {
  .about-hero-title {
    font-size: 56px;
    line-height: 53.76px;
    letter-spacing: -1.68px;
  }
  .gallery-tile {
    width: 253.016px;
    height: 316.266px;
  }
}

/* =========================================================
   Mobile <= 809.98
   ========================================================= */
@media (max-width: 809.98px) {
  .about-hero {
    height: 810px;
    justify-content: flex-start;
    padding: 24px;
  }
  .about-hero-bg { height: 910px; }
  .about-hero-title {
    max-width: 200px;
    font-size: 48px;
    line-height: 46.08px;
    letter-spacing: -1.44px;
    text-align: left;
  }

  .mission { padding: 48px 0; }
  .mission-box { max-width: none; width: 100%; gap: 8px; }
  .mission-text {
    font-size: 24px;
    line-height: 33.6px;
    letter-spacing: -0.2px;
  }

  .gallery-rows { gap: 8px; }
  .gallery-track { gap: 8px; }
  .gallery-tile {
    width: 138.125px;
    height: 172.656px;
    border-radius: 8px;
  }
  .gallery-vignette {
    background-image: radial-gradient(ellipse 71% 66% at 50% 50%, rgba(0, 0, 0, 0) 45.0398%, rgba(0, 0, 0, 0.3) 100%);
  }

  .faq { padding: 48px 0 64px; }
  .faq-col {
    max-width: none;
    padding: 0 24px;
    gap: 32px;
  }
  .faq-head { align-items: flex-start; }
  .faq-title { text-align: left; }
  .faq-sub { text-align: left; }

  .contact { padding: 32px 0 48px; }
  .contact-col {
    max-width: none;
    padding: 0 24px;
    gap: 24px;
  }
  .contact-head { align-items: flex-start; }
  .contact-title { text-align: left; }
  .contact-sub { text-align: left; }
  .contact-card { border-radius: 16px; }
  .contact-card form { padding: 16px; }
  .contact-row { flex-direction: column; gap: 16px; }
  .contact-email { width: 100%; }
  .contact-send { width: 100%; }
}
