/* ==================== Sub-page Common ==================== */

.page-hero {
  position: relative;
  background:
    radial-gradient(circle at 30% 80%, rgba(229,190,130,0.55) 0%, rgba(229,190,130,0) 50%),
    radial-gradient(circle at 90% 20%, rgba(255,224,180,0.45) 0%, rgba(255,224,180,0) 55%),
    linear-gradient(180deg, #FFF8EE 0%, #FFEAC4 100%);
  padding: 160px 24px 90px;
  text-align: center;
  overflow: hidden;
}
.page-hero .container { max-width: 900px; }
.page-hero .pill-tag {
  background: #fff;
  color: var(--color-text);
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.page-hero h1,
.page-hero h2.page-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 18px;
}
.page-hero em { font-family: var(--font-serif); font-style: italic; font-weight: 600; }
.page-hero p {
  font-size: 14px;
  color: var(--color-text-soft);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== About ==================== */
.about-quote {
  position: relative;
  background:
    radial-gradient(circle at 25% 80%, rgba(229,190,130,0.55) 0%, rgba(229,190,130,0) 55%),
    radial-gradient(circle at 95% 20%, rgba(255,224,180,0.45) 0%, rgba(255,224,180,0) 55%),
    linear-gradient(180deg, #FFF8EE 0%, #FFEAC4 100%);
  padding: 140px 24px 70px;
  overflow: hidden;
}
.about-quote .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
}
.about-quote__text { padding-right: 24px; }
.about-quote__text .pill-tag {
  background: #fff;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.about-quote__text blockquote {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  color: var(--color-text);
}
.about-quote__text cite {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  font-style: normal;
}
.about-quote__text cite::before { content: "—— "; }
.about-quote__photo {
  position: relative;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-quote__photo .placeholder {
  width: 320px; height: 380px;
  border-radius: 16px;
  background: linear-gradient(180deg, #C9A77A 0%, #8C6034 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; color: #fff;
  box-shadow: 0 30px 80px -20px rgba(140,96,52,0.4);
}

.about-mission {
  background: var(--color-bg);
  padding: 100px 0 60px;
  text-align: center;
}
.about-mission .section-eyebrow { font-style: italic; }
.about-mission h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.1;
}
.about-mission h2 em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  margin-top: 6px;
}
.about-mission p {
  max-width: 720px;
  margin: 32px auto 0;
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.about-team {
  background: var(--color-bg);
  padding: 80px 0 110px;
  text-align: center;
}
.about-team h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  margin: 12px 0 16px;
}
.about-team h2 em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
}
.about-team .team-stats {
  font-size: 16px;
  color: var(--color-text);
  margin: 24px 0 56px;
  line-height: 1.7;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-avatar {
  width: 140px; height: 140px;
  background: linear-gradient(135deg, #FFF8EE 0%, #F2D9B0 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px -10px rgba(140,96,52,0.25);
}
.team-name {
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.team-name svg { width: 16px; height: 16px; color: #0A66C2; }
.team-role {
  font-size: 13px;
  color: var(--color-text-soft);
  text-align: center;
  line-height: 1.6;
}

/* ==================== Legal Pages (Privacy / Terms) ==================== */
.legal-page {
  background: var(--color-bg);
  padding: 140px 0 100px;
}
.legal-page .container { max-width: 880px; }
.legal-page h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.legal-page .last-updated {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}
.legal-page h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 14px;
  letter-spacing: -0.005em;
  color: var(--color-text);
}
.legal-page h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 22px 0 10px;
  color: var(--color-text);
}
.legal-page p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-soft);
  margin: 0 0 14px;
}
.legal-page ul {
  margin: 0 0 14px;
  padding-left: 22px;
  list-style: disc;
}
.legal-page ul li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-soft);
  margin-bottom: 8px;
}
.legal-page ul li strong {
  color: var(--color-text);
  font-weight: 700;
}
.legal-page a {
  color: var(--color-tan-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* ==================== Media Kit ==================== */
.media-cards {
  background: var(--color-bg);
  padding: 80px 0 110px;
}
.media-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
  min-height: 420px;
}
.media-card:last-child { margin-bottom: 0; }
.media-card__text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.media-card__text h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  line-height: 1.25;
}
.media-card__text p {
  font-size: 15px;
  color: var(--color-text-soft);
  margin: 0 0 28px;
  line-height: 1.7;
}
.media-card__text .cta-dark { align-self: flex-start; }
.media-card__photo {
  background-size: cover;
  background-position: center;
  background-color: #F0E9DC;
  min-height: 380px;
}
.media-card--alt { background: linear-gradient(135deg, #FFF8EE 0%, #F6EEDF 100%); }

/* ==================== Support ==================== */
.support-body {
  background: var(--color-bg);
  padding: 60px 0 110px;
}
.support-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.support-form {
  background: var(--color-card);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.support-form h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  line-height: 1.2;
}
.support-form h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 600; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}
.field input,
.field textarea {
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--color-tan-deep);
  background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 24px;
  cursor: pointer;
}
.field-checkbox input { width: 18px; height: 18px; }
.support-form .cta-dark { width: 100%; text-align: center; padding: 14px; }

.support-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-card {
  background: var(--color-card);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}
.info-card p {
  font-size: 14px;
  color: var(--color-text-soft);
  margin: 0;
  line-height: 1.7;
}
.info-card a {
  color: var(--color-tan-deep);
  text-decoration: none;
  font-weight: 500;
}
.info-card a:hover { text-decoration: underline; }
.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #FFF4DA 0%, #F2D9B0 100%);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--color-tan-deep);
}

/* ==================== Product Detail ==================== */
.product-top {
  background: var(--color-bg);
  padding: 130px 0 80px;
}
.product-top .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-gallery {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF8EE 0%, #F2D9B0 100%);
  position: relative;
  aspect-ratio: 4 / 5;
}
.product-gallery img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-gallery__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
}
.product-gallery__overlay .badge {
  display: inline-block;
  background: var(--color-cta);
  color: #2a1d09;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.product-gallery__overlay h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.30);
}
.product-gallery__overlay h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 600; }

.product-info .brand {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-info h1 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.product-price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.product-info h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
}
.product-info ul.benefits {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 32px;
}
.product-info ul.benefits li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 6px;
}
.product-info ul.benefits li strong {
  color: var(--color-text);
  font-weight: 700;
}
.btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
  padding: 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.15s;
}
.btn-outline:hover { background: rgba(20,17,15,0.04); }
.btn-dark {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--color-text);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--color-text);
  margin-bottom: 28px;
}
.btn-dark:hover { background: #2A2622; border-color: #2A2622; }

.product-iconrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}
.product-iconrow .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-soft);
}
.product-iconrow .item .ico {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--color-tan-deep);
  border-radius: 50%;
  color: var(--color-tan-deep);
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 12px;
}

/* Product anchor nav */
.product-anchor {
  position: sticky;
  top: 8px;
  z-index: 10;
  background: rgba(250,246,241,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
  margin-top: 24px;
}
.product-anchor ul {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 16px 24px;
  flex-wrap: wrap;
}
.product-anchor a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.product-anchor a:hover,
.product-anchor a.active {
  color: var(--color-text);
  border-color: var(--color-tan-deep);
}

/* Product feature sections */
.product-section {
  background: var(--color-bg);
  padding: 80px 0;
}
.product-section + .product-section { padding-top: 0; }
.product-section h2 {
  text-align: center;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.product-section h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 600; }
.product-section .lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.7;
}
.feat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.feat-card__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FFF4DA 0%, #F2D9B0 100%);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--color-tan-deep);
}
.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
}
.feat-card p {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin: 0;
}

/* Accordion / FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.accordion__item {
  background: var(--color-card);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 12px -4px rgba(20,17,15,0.05);
}
.accordion__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}
.accordion__btn::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text-soft);
  transition: transform 0.2s;
  margin-left: 16px;
  flex-shrink: 0;
}
.accordion__item.is-open .accordion__btn::after { content: "−"; }
.accordion__body {
  display: none;
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.7;
}
.accordion__item.is-open .accordion__body { display: block; }
.accordion__body p { margin: 0 0 8px; }
.accordion__body p:last-child { margin-bottom: 0; }

/* ==================== Responsive ==================== */
@media (max-width: 860px) {
  .about-quote .container { grid-template-columns: 1fr; gap: 32px; }
  .about-quote__photo { min-height: 320px; }
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .media-card { grid-template-columns: 1fr; min-height: auto; }
  .media-card__photo { min-height: 240px; order: -1; }
  .support-grid { grid-template-columns: 1fr; }
  .product-top .container { grid-template-columns: 1fr; }
  .feat-row { grid-template-columns: 1fr; }
  .product-anchor ul { gap: 16px; padding: 12px 16px; overflow-x: auto; flex-wrap: nowrap; }
  .product-anchor a { white-space: nowrap; }
}
