/* Editorial, policy and customer-support pages. */
.elarion-content-page {
  padding: 78px 0 110px;
  background: linear-gradient(180deg, #fff 0, #fdfbf9 100%);
}
.elarion-content-page .page-intro {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
  color: var(--muted);
  font-size: 1.06rem;
}
.elarion-content-page .page-intro > *:last-child {
  margin-bottom: 0;
}
.content-kicker {
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.editorial-card {
  border: 1px solid rgba(81, 56, 37, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(52, 35, 25, 0.06);
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.editorial-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  min-height: 560px;
  overflow: hidden;
}
.about-story__image {
  min-height: 520px;
  background: var(--bg);
}
.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 76px);
}
.about-story__copy h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}
.about-values {
  margin-top: 32px;
}
.about-values article {
  padding: 34px;
}
.about-values .value-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--secondary);
  font: 600 0.72rem var(--body);
}
.about-values h3 {
  font-size: 1.8rem;
}
.about-values p {
  margin: 0;
  color: var(--muted);
}
.about-process {
  padding: 100px 0 85px;
}
.about-section-heading {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}
.about-section-heading h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}
.about-section-heading > p:last-child {
  color: var(--muted);
}
.about-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-process__steps article {
  position: relative;
  padding: 35px 28px;
  border-right: 1px solid var(--border);
}
.about-process__steps article:last-child {
  border-right: 0;
}
.about-process__steps span {
  display: block;
  margin-bottom: 35px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.about-process__steps h3 {
  font-size: 1.6rem;
}
.about-process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.about-materials {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
}
.about-materials__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}
.about-materials__copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}
.about-materials__copy p {
  color: var(--muted);
}
.about-materials__image {
  min-height: 480px;
  background: var(--bg);
}
.about-materials__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-promise {
  margin-top: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-promise article {
  padding: 10px 30px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.about-promise article:last-child {
  border-right: 0;
}
.about-promise strong,
.about-promise span {
  display: block;
}
.about-promise strong {
  color: var(--primary);
  font: 600 1.35rem var(--heading);
}
.about-promise span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.about-cta {
  max-width: 850px;
  margin: 100px auto 0;
  text-align: center;
}
.about-cta h2 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}
.about-cta .button {
  margin-top: 14px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px;
  align-items: start;
}
.contact-details,
.contact-form-card {
  padding: clamp(28px, 4vw, 46px);
}
.contact-details {
  position: sticky;
  top: 110px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.78);
}
/* Keep the dark contact panel when the later luxury theme styles recolor generic cards. */
.editorial-card.contact-details {
  background-color: var(--primary) !important;
}
.contact-details h2,
.contact-details h3,
.contact-details a {
  color: #fff;
}
.contact-details h2 {
  font-size: 2.6rem;
}
.contact-method {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-method:last-child {
  padding-bottom: 0;
}
.contact-method span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-method p {
  margin: 0;
}
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.whatsapp-link i {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-style: normal;
  box-shadow: 0 5px 14px rgba(37, 211, 102, 0.22);
}
.whatsapp-link i svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.whatsapp-link:hover {
  color: var(--accent);
}
.contact-form-card h2 {
  font-size: 2.6rem;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}
.contact-form-grid .field-wide {
  grid-column: 1/-1;
}
.contact-form-grid label {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
}
.contact-form-grid label span {
  display: block;
  margin-bottom: 7px;
}
.contact-form-grid textarea {
  min-height: 150px;
}
.contact-form-grid button {
  min-width: 180px;
}
.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.contact-status {
  margin-bottom: 24px;
  padding: 15px 18px;
  border-left: 3px solid #47724c;
  border-radius: 0 10px 10px 0;
  background: #f2f7f2;
  color: #315536;
}
.contact-status.is-error {
  border-color: #a94442;
  background: #fff5f4;
  color: #843b3a;
}
.contact-status[hidden] {
  display: none;
}
.contact-form-grid button.is-loading {
  pointer-events: none;
  opacity: 0.7;
}
.contact-form-grid button.is-loading::after {
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  content: "";
  animation: elarion-contact-spin 0.7s linear infinite;
}
@keyframes elarion-contact-spin {
  to {
    transform: rotate(360deg);
  }
}
.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}
.policy-nav {
  position: sticky;
  top: 110px;
  padding: 18px;
}
.policy-nav strong {
  display: block;
  padding: 6px 12px 14px;
  color: var(--primary);
  font-family: var(--heading);
  font-size: 1.35rem;
}
.policy-nav a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}
.policy-nav a:hover {
  background: var(--bg);
  color: var(--primary);
}
.policy-document {
  padding: clamp(28px, 5vw, 60px);
}
.policy-section {
  scroll-margin-top: 120px;
  padding: 0 0 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.policy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.policy-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.policy-section h3 {
  margin-top: 28px;
  font-size: 1.4rem;
}
.policy-section p,
.policy-section li {
  color: var(--muted);
}
.policy-section ul {
  padding-left: 20px;
}
.policy-meta {
  margin-top: -30px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}
.faq-list {
  max-width: 940px;
  margin: 0 auto;
}
.faq-list details {
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(52, 35, 25, 0.035);
  overflow: hidden;
}
.faq-list summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  color: var(--primary);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  position: absolute;
  right: 24px;
  top: 50%;
  content: "+";
  color: var(--secondary);
  font: 500 1.5rem/1 var(--heading);
  transform: translateY(-50%);
}
.faq-list details[open] summary {
  background: #faf7f3;
}
.faq-list details[open] summary::after {
  content: "\2212";
}
.faq-answer {
  padding: 20px 24px 24px;
  color: var(--muted);
}
.faq-answer > *:last-child {
  margin-bottom: 0;
}
.tracking-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
}
.tracking-card .woocommerce-form-track-order {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.tracking-card .form-row {
  float: none !important;
  width: 100% !important;
  margin-bottom: 18px !important;
}
.tracking-card label {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
}
.tracking-card input {
  min-height: 52px;
  background: #fdfcfa;
}
.tracking-card button {
  min-width: 190px;
}
.support-cards article {
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.support-cards h2 {
  font-size: 1.8rem;
}
.support-cards p {
  flex: 1;
  color: var(--muted);
}
.support-cards a {
  align-self: flex-start;
}
.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 38px 42px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
}
.support-band h2 {
  margin: 0;
  color: #fff;
  font-size: 2.4rem;
}
.support-band p {
  margin: 7px 0 0;
}
.support-band .button {
  flex: 0 0 auto;
  border-color: #fff !important;
  background: #fff !important;
  color: var(--primary) !important;
}
@media (max-width: 900px) {
  .editorial-grid--three {
    grid-template-columns: 1fr;
  }
  .about-story,
  .about-materials,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .about-story__image {
    min-height: 400px;
  }
  .about-materials__image {
    min-height: 380px;
  }
  .about-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-process__steps article:nth-child(2) {
    border-right: 0;
  }
  .about-process__steps article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  .about-promise article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .about-promise article:last-child {
    border-bottom: 0;
  }
  .contact-details {
    position: static;
  }
  .policy-layout {
    grid-template-columns: 1fr;
  }
  .policy-nav {
    position: static;
  }
  .policy-nav div {
    display: flex;
    gap: 4px;
    overflow-x: auto;
  }
  .policy-nav a {
    flex: 0 0 auto;
  }
  .support-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .elarion-content-page {
    padding: 50px 0 72px;
  }
  .elarion-content-page .page-intro {
    margin-bottom: 34px;
  }
  .editorial-grid,
  .support-cards,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .about-story__image {
    min-height: 320px;
  }
  .about-story__copy {
    padding: 30px 22px;
  }
  .about-values article,
  .support-cards article {
    padding: 25px 20px;
  }
  .about-process {
    padding: 70px 0 60px;
  }
  .about-process__steps article {
    padding: 28px 20px;
    border-right: 0 !important;
  }
  .about-process__steps article:last-child {
    border-bottom: 0;
  }
  .about-process__steps span {
    margin-bottom: 18px;
  }
  .about-materials__copy {
    padding: 30px 22px;
  }
  .about-materials__image {
    min-height: 300px;
  }
  .about-cta {
    margin-top: 70px;
  }
  .contact-details,
  .contact-form-card,
  .policy-document,
  .tracking-card {
    padding: 25px 20px;
  }
  .policy-meta {
    margin-top: -12px;
  }
  .policy-section {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .support-band {
    padding: 28px 22px;
  }
  .support-band .button {
    margin-top: 20px;
  }
}
