/* Shared layout for utility pages (contact, book, shop hub, discovery-call) */

.cyw-page-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text, #3D3530);
  line-height: 1.7;
  font-size: 16px;
}

.cyw-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.cyw-page-grid--lg { gap: 60px; }
.cyw-page-grid--md { gap: 24px; }
.cyw-page-grid--sm { gap: 20px; }

.cyw-page-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(24px, 4.5vw, 26px);
  color: var(--forest, #2E4A3A);
  margin: 0 0 18px;
  line-height: 1.2;
}
.cyw-page-heading--spaced { margin-top: 28px; }

.cyw-page-card {
  background: var(--linen, #F4EEE0);
  padding: 40px;
  border-radius: var(--r, 12px);
  border: 1px solid var(--border, rgba(46, 74, 58, 0.12));
}
.cyw-page-card p {
  margin: 0 0 18px;
  color: var(--text-mid, #5C524A);
  font-size: 15px;
  line-height: 1.7;
}
.cyw-page-card p:last-child { margin-bottom: 0; }

.cyw-page-link {
  color: var(--clay, #B87D5B);
  text-decoration: none;
  word-break: break-word;
}
.cyw-page-link:hover { text-decoration: underline; }

.cyw-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--forest, #2E4A3A);
  color: var(--linen, #F4EEE0);
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 0;
  cursor: pointer;
}
.cyw-page-btn:hover {
  background: var(--forest-mid, #3D6150);
  transform: translateY(-1px);
}

.cyw-contact-or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 22px;
  color: var(--text-muted, #9C8E7F);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
}
.cyw-contact-or::before,
.cyw-contact-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border, rgba(46, 74, 58, 0.12));
}

.cyw-whatsapp-qr-link {
  display: block;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cyw-whatsapp-qr-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 74, 58, 0.12);
}
.cyw-whatsapp-qr-img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto;
}

/* Book page */
.cyw-book-option {
  text-decoration: none;
  color: inherit;
  border-radius: var(--r, 12px);
  padding: 40px;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cyw-book-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 74, 58, 0.1);
}
.cyw-book-option--light { background: var(--linen, #F4EEE0); }
.cyw-book-option--forest {
  background: var(--forest, #2E4A3A);
  color: var(--linen, #F4EEE0);
}
.cyw-book-option h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(26px, 5vw, 30px);
  color: var(--forest, #2E4A3A);
  margin: 0 0 12px;
  line-height: 1.15;
}
.cyw-book-option--forest h3 { color: var(--linen, #F4EEE0); }
.cyw-book-option p {
  margin: 0;
  color: var(--text-mid, #5C524A);
  font-size: 15px;
  line-height: 1.65;
}
.cyw-book-option--forest p {
  opacity: 0.85;
  color: inherit;
}

/* Shop hub */
.cyw-shop-cta {
  background: var(--forest, #2E4A3A);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  margin: 0 0 56px;
  position: relative;
  overflow: hidden;
}
.cyw-shop-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(123, 156, 126, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cyw-shop-cta > * { position: relative; }
.cyw-shop-cta__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage, #7B9C7E);
  margin: 0 0 16px;
}
.cyw-shop-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: var(--linen, #F4EEE0);
  margin: 0 0 20px;
}
.cyw-shop-cta__lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(244, 238, 224, 0.65);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cyw-shop-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--linen, #F4EEE0);
  color: var(--forest, #2E4A3A);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cyw-shop-cta__btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cyw-shop-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 8px;
}
.cyw-shop-tile {
  display: block;
  background: #fff;
  border: 1px solid var(--border, rgba(46, 74, 58, 0.12));
  border-radius: 12px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}
.cyw-shop-tile:hover {
  border-color: var(--forest, #2E4A3A);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 74, 58, 0.1);
}
.cyw-shop-tile__icon { font-size: 28px; margin-bottom: 14px; }
.cyw-shop-tile h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--forest, #2E4A3A);
  margin: 0 0 10px;
}
.cyw-shop-tile p {
  font-size: 14px;
  color: var(--text-mid, #5C524A);
  margin: 0 0 18px;
  line-height: 1.6;
}
.cyw-shop-tile__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay, #B87D5B);
}

/* Contact page — two columns: details + form left, call/WhatsApp right */
.cyw-contact-form-section {
  width: 100%;
  margin-top: 8px;
}
.cyw-contact-form-section .cyw-page-heading {
  margin-bottom: 20px;
}
.cyw-contact-form-section .cyw-contact-notice {
  margin-top: 0;
  max-width: none;
}

/* Contact form */
.cyw-contact-notice {
  display: none;
  padding: 20px 24px;
  background: rgba(46, 74, 58, 0.07);
  border-left: 3px solid var(--forest, #2E4A3A);
  border-radius: 8px;
  margin-top: 24px;
}
.cyw-contact-notice.is-visible { display: block; }
.cyw-contact-notice__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest, #2E4A3A);
  margin: 0 0 6px;
}
.cyw-contact-notice__text {
  font-size: 14px;
  color: var(--text-mid, #5C524A);
  margin: 0;
}

.cyw-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: none;
  margin-top: 0;
}
.cyw-contact-form.is-hidden { display: none; }
.cyw-contact-field {
  display: grid;
  gap: 6px;
}
.cyw-contact-field span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid, #5C524A);
}
.cyw-contact-field input,
.cyw-contact-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border, rgba(46, 74, 58, 0.12));
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  width: 100%;
}
.cyw-contact-field textarea { resize: vertical; }

@media (max-width: 900px) {
  .cyw-page-main { padding: 40px 24px 110px; }
  .cyw-page-grid,
  .cyw-shop-tiles { grid-template-columns: 1fr; gap: 28px; }
  .cyw-shop-cta { padding: 48px 28px; }
}

/* Policy pages */
.cyw-policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border, rgba(46, 74, 58, 0.12));
  font-size: 13px;
}
.cyw-policy-nav a {
  color: var(--text-mid, #5C524A);
  text-decoration: none;
}
.cyw-policy-nav a:hover { color: var(--clay, #B87D5B); }
.cyw-policy-nav a[aria-current="page"] {
  color: var(--forest, #2E4A3A);
  font-weight: 600;
}

.cyw-policy-prose {
  max-width: 780px;
}
.cyw-policy-prose > p,
.cyw-policy-prose li {
  color: var(--text-mid, #5C524A);
  margin: 0 0 16px;
}
.cyw-policy-prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(24px, 4vw, 28px);
  color: var(--forest, #2E4A3A);
  margin: 40px 0 14px;
  line-height: 1.2;
}
.cyw-policy-prose h2:first-child { margin-top: 0; }
.cyw-policy-prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--forest, #2E4A3A);
  margin: 28px 0 10px;
}
.cyw-policy-prose ul {
  margin: 0 0 18px 1.2em;
  padding: 0;
}
.cyw-policy-prose a { color: var(--clay, #B87D5B); }

.cyw-faq-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border, rgba(46, 74, 58, 0.12));
}
.cyw-faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.cyw-faq-item h3 {
  margin-top: 0;
  font-size: 22px;
}

.cyw-policy-hub {
  display: grid;
  gap: 16px;
  max-width: 640px;
}
.cyw-policy-hub a {
  display: block;
  padding: 20px 24px;
  border: 1px solid var(--border, rgba(46, 74, 58, 0.12));
  border-radius: var(--r, 10px);
  text-decoration: none;
  color: var(--forest, #2E4A3A);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cyw-policy-hub a:hover {
  border-color: var(--forest, #2E4A3A);
  box-shadow: 0 6px 20px rgba(46, 74, 58, 0.08);
}
.cyw-policy-hub a strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.cyw-policy-hub a span {
  font-size: 14px;
  color: var(--text-mid, #5C524A);
}

@media (max-width: 700px) {
  .cyw-page-main {
    padding: 32px 20px 120px;
    font-size: 15px;
  }
  .cyw-page-card,
  .cyw-book-option { padding: 28px 22px; }
  .cyw-page-btn,
  .cyw-contact-form button[type="submit"],
  .cyw-shop-cta__btn { width: 100%; }
  .cyw-shop-cta {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  .cyw-shop-tile { padding: 28px 22px; }
}
