/* ==========================================================================
   Shared styles for the inner site pages (About, Contact, and the rest).
   Inherits tokens, reset and components from styles.css.
   ========================================================================== */

/* ------------------------------------------------------ page hero ------- */

.page-hero {
  padding-block: clamp(44px, 6vw, 72px) clamp(28px, 4vw, 40px);
  text-align: center;
}
.page-hero__eyebrow {
  font-family: var(--hand);
  font-size: 24px;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--green);
}
.page-hero__lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--body-hero);
  max-width: 620px;
  margin: 18px auto 0;
}

/* --------------------------------------------------------- about -------- */

.about-shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  padding-bottom: clamp(48px, 6vw, 76px);
}
.about-shot { margin: 0; }
.about-shot img {
  width: 100%;
  height: clamp(240px, 34vw, 400px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(27, 46, 30, .14);
}
.about-shot figcaption {
  font-family: var(--hand);
  font-size: 20px;
  color: var(--body);
  text-align: center;
  margin-top: 12px;
}

.about-story { max-width: 720px; }
.about-story .h2 { margin-bottom: 22px; }
.about-story p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body-hero);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.about-story em { font-style: italic; color: var(--green); }

.about-sign {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.about-sign__name {
  font-family: var(--hand);
  font-size: 30px;
  color: var(--green);
  line-height: 1.1;
}
.about-sign__role { font-size: 14px; color: var(--body); margin-top: 2px; }

.about-ship { text-align: center; }
.about-ship__lead {
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 27px);
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto;
}
.about-ship__places {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 22px;
}
.about-ship__places li {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep);
  background: var(--pill-cream);
  border-radius: 999px;
  padding: 7px 16px;
}

/* ------------------------------------------------------- contact -------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
}
.contact-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 18px;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--offwhite);
  border: 1.5px solid #d8d0bf;
  border-radius: 11px;
  padding: 13px 15px;
  min-height: 50px;
  width: 100%;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { border-color: var(--green); }
.field__hint { font-size: 12.5px; color: var(--body); }

.contact-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 12px;
  min-height: 52px;
}
.contact-fine {
  font-size: 12.5px;
  line-height: 1.6;
  color: #6f6a5c;
  margin-top: 14px;
}

/* Success and error states swapped in by JS. */
.contact-status[hidden] { display: none; }
.contact-status {
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
}
.contact-status--ok { background: #EBF3EB; border-left: 4px solid var(--green); color: var(--ink); }
.contact-status--err { background: #FEF6E4; border: 1px solid #E7D5AC; color: #5c4a22; }

.contact-done h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 10px;
}
.contact-done p { font-size: 15.5px; line-height: 1.65; color: var(--body); }
.contact-done button { margin-top: 18px; }

/* Sidebar */
.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.contact-block {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
}
.contact-block__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.contact-block__mail {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green);
  text-decoration: none;
  word-break: break-word;
}
.contact-block__mail:hover { text-decoration: underline; }
.contact-block p { font-size: 14px; line-height: 1.6; color: var(--body); margin-top: 10px; }

.contact-links { display: flex; flex-direction: column; gap: 8px; }
.contact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px 15px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  min-height: 48px;
  transition: border-color .15s ease, background .15s ease;
}
.contact-links a:hover { border-color: var(--green); background: #F4F0E7; color: var(--ink); }
.contact-links span { color: var(--gold-deep); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------- FAQ page --- */

.faq-groups { display: flex; flex-direction: column; gap: 44px; max-width: 780px; margin: 0 auto; }

.faq-group__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--green);
  margin-bottom: 6px;
}

.faq-cta {
  max-width: 780px;
  margin: clamp(48px, 6vw, 68px) auto 0;
  text-align: center;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 40px);
}
.faq-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
}
.faq-cta p { font-size: 15.5px; line-height: 1.6; color: var(--body); margin: 10px 0 20px; }

/* ------------------------------------------- shipping & returns page ---- */

.wrap .sr-lede,
.wrap .sr-fine { max-width: 720px; }

.sr-lede {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body-hero);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.sr-cards { margin-bottom: 22px; }
.sr-note {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  background: #EBF3EB;
  border-radius: 14px;
  padding: 16px 18px;
  max-width: 720px;
  margin-bottom: 8px;
}
.sr-h2 { margin-top: clamp(40px, 5vw, 56px); margin-bottom: 14px; }
.sr-h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 22px 0 10px;
}
.sr-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body-hero);
  max-width: 720px;
  margin-bottom: 22px;
}
.sr-fine { font-size: 14px; line-height: 1.65; color: var(--body); margin-top: 16px; }
