/* ==========================================================================
   PINK POLISH — faq.css
   ========================================================================== */

.nav-list > li > a.is-active { font-weight: 600; }

/* ============ FAQ MAIN LAYOUT ============ */
.faq-main {
  padding: clamp(56px, 8vw, 100px) 0 clamp(48px, 7vw, 80px);
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.faq-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.15;
  color: var(--green);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.faq-title em { font-style: italic; }

/* ============ ACCORDION ============ */
.faq-accordion { display: grid; gap: 0; }

.faq-item {
    border-top: 1px solid #FFBED1;
}
    .faq-item:last-child {
        border-bottom: 1px solid #FFBED1;
    }

.faq-q {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  cursor: pointer;
  user-select: none;
  transition: opacity .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform .3s ease;
}
.faq-item[open] > .faq-q::after {
  content: "−";
}
.faq-q:hover { opacity: .7; }

.faq-a {
  padding: 4px 0 24px;
  display: grid;
  gap: 12px;
  overflow: hidden;
  animation: faqOpen .3s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-a p, .faq-a li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--green);
}

/* ============ WHAT ELSE ============ */
.faq-whatelse {
  padding: clamp(64px, 9vw, 120px) 0;
 /* border-top: 1px solid rgba(28, 96, 68, .15);*/
}
.faq-whatelse-layout {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.faq-whatelse-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--green);
  line-height: 1.1;
}
.faq-qmark {
  color: var(--pink);
  font-style: italic;
  font-size: 1.25em;
  font-weight: 500;
  margin-left: 2px;
}
.faq-form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  background: var(--pink-pale);
  padding: 10px 16px;
}
.faq-whatelse-sub {
  font-size: 13px;
  color: var(--green);
  line-height: 1.6;
  margin-top: 14px;
  opacity: .8;
}
.faq-whatelse-form { display: grid; gap: 0; }
.faq-field {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #FFBED1;
    padding: 14px 0 8px;
}
.faq-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  opacity: .65;
  margin-bottom: 6px;
}
.faq-field input,
.faq-field textarea {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--green);
  resize: none;
  line-height: 1.5;
  padding: 2px 0;
}
.faq-form-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.faq-privacy {
  font-size: 12px;
  font-style: italic;
  color: var(--green);
  opacity: .65;
  line-height: 1.6;
}

/* ============ SERVICES ============ */
.faq-services {
  padding: clamp(56px, 8vw, 100px) 0;
  /*border-top: 1px solid rgba(28, 96, 68, .15);*/
}
.faq-services-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq-services-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 52px);
  color: var(--green);
  line-height: 1.2;
}
.faq-services-title em { font-style: italic; }
.faq-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
 /* border: 1px solid rgba(28, 96, 68, .18);*/
}
.faq-service-col {
    padding: clamp(20px, 2.5vw, 32px);
    border: 1px solid #FFBED1;
}
.faq-service-col h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.faq-service-col ul { display: grid; gap: 8px; }
.faq-service-col li {
  font-size: 13.5px;
  color: var(--green);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.faq-service-col li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-size: 16px;
  line-height: 1.2;
}
.faq-call {
  font-weight: 400;
  opacity: .7;
}

/* ============ MISSION + VISION ============ */
.faq-mv {
  padding: clamp(64px, 9vw, 120px) 0;
 /* border-top: 1px solid rgba(28, 96, 68, .15);*/
}
.faq-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(12px, 1.5vw, 20px);
  align-items: start;
}

/* Photos */
.faq-mv-photo {
  overflow: hidden;
  background: var(--pink-pale);
  margin: 0;
}
.faq-mv-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.faq-mv-photo:hover img { transform: scale(1.03); }

.faq-mv-photo-a { aspect-ratio: 1 / 1.1; grid-column: 1; grid-row: 1; }
.faq-mv-photo-b { aspect-ratio: 1 / 1.1; grid-column: 2; grid-row: 1; }
.faq-mv-card    { grid-column: 3; grid-row: 1; align-self: center; padding: clamp(16px, 2vw, 32px); }
.faq-vision     { grid-column: 1; grid-row: 2; align-self: center; padding: clamp(16px, 2vw, 32px); }
.faq-mv-photo-c { aspect-ratio: 1 / 1.1; grid-column: 2; grid-row: 2; }
.faq-mv-photo-d { aspect-ratio: 1 / 1.1; grid-column: 3; grid-row: 2; }

.faq-mv-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.2;
}
.faq-mv-label em { font-style: italic; }
.faq-mv-card p, .faq-vision p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--green);
  margin-bottom: 10px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1023px) {
  .faq-layout,
  .faq-whatelse-layout,
  .faq-services-layout { grid-template-columns: 1fr; }
  .faq-title { position: static; }
  .faq-mv-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-mv-photo-a { grid-column: 1; grid-row: 1; }
  .faq-mv-photo-b { grid-column: 2; grid-row: 1; }
  .faq-mv-card    { grid-column: 1 / -1; grid-row: 2; }
  .faq-vision     { grid-column: 1 / -1; grid-row: 4; }
  .faq-mv-photo-c { grid-column: 1; grid-row: 3; }
  .faq-mv-photo-d { grid-column: 2; grid-row: 3; }
}
@media (max-width: 639px) {
  .faq-services-grid { grid-template-columns: 1fr; }
  .faq-mv-grid { grid-template-columns: 1fr; }
  .faq-mv-photo-a,
  .faq-mv-photo-b,
  .faq-mv-photo-c,
  .faq-mv-photo-d { grid-column: 1; grid-row: auto; aspect-ratio: 4/3; }
  .faq-mv-card,
  .faq-vision { grid-column: 1; grid-row: auto; }
}
