/*
Theme Name: Guide Child
Template: twentytwentyfour
Version: 1.0
*/

.guide-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 18px 64px;
  font-size: 18px;
  line-height: 1.7;
}

.guide-hero {
  padding: 32px 20px;
  border-radius: 20px;
  background: #f8f3ea;
  margin-bottom: 28px;
}

.guide-hero h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.guide-page section {
  margin-bottom: 32px;
}

.guide-page h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

:root {
  --guide-bg: #fbf7ef;
  --guide-card: #ffffff;
  --guide-text: #243433;
  --guide-muted: #66736f;
  --guide-teal: #0f5c5c;
  --guide-teal-dark: #0a4141;
  --guide-orange: #d97832;
  --guide-orange-soft: #fff1e5;
  --guide-blue-soft: #edf7f7;
  --guide-green-soft: #eef8f1;
  --guide-border: #e7ded1;
  --guide-shadow: 0 14px 40px rgba(26, 43, 43, 0.08);
}

body.single-guide {
  background: var(--guide-bg);
}

.guide-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 18px 72px;
  color: var(--guide-text);
  font-size: 18px;
  line-height: 1.75;
}

.guide-page p {
  margin: 0 0 1em;
}

.guide-page p:last-child {
  margin-bottom: 0;
}

.guide-hero {
  position: relative;
  overflow: hidden;
  padding: 38px 24px 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(217, 120, 50, 0.16), transparent 34%),
    linear-gradient(135deg, #0f5c5c 0%, #0a4141 100%);
  color: #ffffff;
  box-shadow: var(--guide-shadow);
  margin-bottom: 18px;
}

.guide-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 7vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.guide-meta span {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
}

.guide-welcome {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}

.guide-quick-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 2px 12px;
  margin: 0 0 16px;
  -webkit-overflow-scrolling: touch;
}

.guide-quick-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--guide-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--guide-teal);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(26, 43, 43, 0.05);
}

.guide-quick-nav a:hover,
.guide-quick-nav a:focus {
  background: var(--guide-teal);
  color: #ffffff;
}

.guide-card {
  position: relative;
  padding: 28px 24px;
  margin-bottom: 18px;
  border: 1px solid var(--guide-border);
  border-radius: 24px;
  background: var(--guide-card);
  box-shadow: 0 10px 30px rgba(26, 43, 43, 0.055);
}

.guide-card h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--guide-teal-dark);
}

.guide-section-label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--guide-blue-soft);
  color: var(--guide-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.guide-card-feature {
  border-left: 6px solid var(--guide-teal);
}

.guide-card-info {
  background: var(--guide-blue-soft);
  border-color: #cfe7e5;
}

.guide-card-rules {
  background: var(--guide-green-soft);
  border-color: #d7eadb;
}

.guide-card-warning {
  background: var(--guide-orange-soft);
  border-color: #f3c9a8;
  border-left: 6px solid var(--guide-orange);
}

.guide-card-warning .guide-section-label {
  background: #ffffff;
  color: #9b4e19;
}

.guide-card-warning h2 {
  color: #7a3f18;
}

.guide-card-faq {
  background: #ffffff;
}

.guide-card-faq p {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7f3ec;
}

.guide-card-phrases {
  background: #fdfbf7;
}

.guide-card-phrases p {
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--guide-border);
}

.guide-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--guide-teal);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(15, 92, 92, 0.2);
}

.guide-button:hover,
.guide-button:focus {
  background: var(--guide-teal-dark);
  color: #ffffff;
}

.guide-button-secondary {
  background: #ffffff;
  color: var(--guide-teal);
  border: 1px solid var(--guide-border);
  box-shadow: none;
}

.guide-button-secondary:hover,
.guide-button-secondary:focus {
  background: var(--guide-blue-soft);
  color: var(--guide-teal-dark);
}

.guide-footer-note {
  padding: 12px 4px;
  color: var(--guide-muted);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 640px) {
  .guide-page {
    padding: 16px 14px 56px;
    font-size: 17px;
  }

  .guide-hero {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .guide-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .guide-button {
    width: 100%;
  }
}

:root {
  --brand-bg: #fbf7ef;
  --brand-card: #ffffff;
  --brand-text: #243433;
  --brand-muted: #66736f;
  --brand-teal: #0f5c5c;
  --brand-teal-dark: #0a4141;
  --brand-orange: #d97832;
  --brand-orange-soft: #fff1e5;
  --brand-blue-soft: #edf7f7;
  --brand-green-soft: #eef8f1;
  --brand-border: #e7ded1;
  --brand-shadow: 0 14px 40px rgba(26, 43, 43, 0.08);
}

body.page-template-default,
body.page {
  background: var(--brand-bg);
}

.home-page {
  color: var(--brand-text);
  font-size: 18px;
  line-height: 1.75;
}

.home-page p {
  margin: 0 0 1em;
}

.home-hero {
  padding: 56px 18px 36px;
}

.home-hero-content,
.home-section,
.home-final-cta {
  max-width: 1080px;
  margin: 0 auto;
}

.home-hero-content {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(217, 120, 50, 0.18), transparent 34%),
    linear-gradient(135deg, #0f5c5c 0%, #0a4141 100%);
  color: #ffffff;
  box-shadow: var(--brand-shadow);
}

.home-kicker,
.home-label,
.home-pricing-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-kicker {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.home-label,
.home-pricing-kicker {
  margin-bottom: 12px;
  background: var(--brand-blue-soft);
  color: var(--brand-teal);
}

.home-hero h1 {
  max-width: 850px;
  margin: 0 0 20px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.home-lead {
  max-width: 760px;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.96);
}

.home-sublead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.home-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(217, 120, 50, 0.26);
}

.home-button:hover,
.home-button:focus {
  background: #bd6527;
  color: #ffffff;
}

.home-button-secondary {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.home-button-secondary:hover,
.home-button-secondary:focus {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.home-small-note {
  margin-top: 18px;
  color: var(--brand-muted);
  font-size: 15px;
}

.home-hero .home-small-note {
  color: rgba(255, 255, 255, 0.74);
}

.home-section {
  padding: 56px 18px;
}

.home-section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-section-header h2,
.home-final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  color: var(--brand-teal-dark);
}

.home-section-header p {
  color: var(--brand-muted);
}

.home-grid {
  display: grid;
  gap: 18px;
}

.home-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-card,
.home-pricing-card,
.home-monitor-box {
  padding: 26px 24px;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background: var(--brand-card);
  box-shadow: 0 10px 30px rgba(26, 43, 43, 0.055);
}

.home-card h3,
.home-monitor-box h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--brand-teal-dark);
}

.home-card p,
.home-monitor-box p {
  color: var(--brand-muted);
}

.home-card-warning {
  background: var(--brand-orange-soft);
  border-color: #f3c9a8;
  border-left: 6px solid var(--brand-orange);
}

.home-card-success {
  background: var(--brand-green-soft);
  border-color: #d7eadb;
  border-left: 6px solid var(--brand-teal);
}

.home-section-accent {
  max-width: none;
  padding-left: 18px;
  padding-right: 18px;
  background: #f3eee4;
}

.home-section-accent > * {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.home-feature-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-feature-list div {
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--brand-border);
}

.home-feature-list span {
  display: inline-flex;
  margin-bottom: 16px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-teal);
  color: #ffffff;
  font-weight: 800;
}

.home-feature-list h3 {
  margin: 0 0 8px;
  color: var(--brand-teal-dark);
}

.home-pricing-card {
  max-width: 720px;
  border: 2px solid rgba(15, 92, 92, 0.18);
}

.home-pricing-card h3 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 56px);
  color: var(--brand-teal-dark);
  letter-spacing: -0.04em;
}

.home-pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 1.25em;
}

.home-monitor-box {
  max-width: 720px;
  margin-top: 18px;
  background: var(--brand-orange-soft);
  border-color: #f3c9a8;
}

.home-faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.home-faq-list details {
  padding: 20px 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--brand-border);
  box-shadow: 0 8px 20px rgba(26, 43, 43, 0.04);
}

.home-faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--brand-teal-dark);
}

.home-faq-list p {
  margin-top: 12px;
  color: var(--brand-muted);
}

.home-final-cta {
  margin-bottom: 56px;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(217, 120, 50, 0.18), transparent 34%),
    linear-gradient(135deg, #0f5c5c 0%, #0a4141 100%);
  color: #ffffff;
  box-shadow: var(--brand-shadow);
}

.home-final-cta h2 {
  color: #ffffff;
}

.home-final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 860px) {
  .home-grid-2,
  .home-grid-3,
  .home-feature-list {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 42px 16px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 22px 14px 24px;
  }

  .home-hero-content,
  .home-final-cta {
    border-radius: 24px;
  }

  .home-button {
    width: 100%;
  }

  .home-card,
  .home-pricing-card,
  .home-monitor-box {
    padding: 22px 18px;
  }
}

.site-header-custom {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid #e7ded1;
  backdrop-filter: blur(14px);
}

.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0a4141;
  text-decoration: none;
  min-width: 240px;
}

.site-brand:hover,
.site-brand:focus {
  color: #0a4141;
  text-decoration: none;
}

.site-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f5c5c;
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(15, 92, 92, 0.18);
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.site-brand-name {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.site-brand-tagline {
  margin-top: 2px;
  color: #66736f;
  font-size: 12px;
  font-weight: 600;
}

.site-nav-custom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav-custom a {
  padding: 9px 11px;
  border-radius: 999px;
  color: #243433;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.site-nav-custom a:hover,
.site-nav-custom a:focus {
  background: #edf7f7;
  color: #0f5c5c;
  text-decoration: none;
}

.site-nav-custom .site-nav-cta {
  margin-left: 4px;
  background: #d97832;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(217, 120, 50, 0.22);
}

.site-nav-custom .site-nav-cta:hover,
.site-nav-custom .site-nav-cta:focus {
  background: #bd6527;
  color: #ffffff;
}

@media (max-width: 860px) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav-custom {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav-custom a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .site-brand {
    min-width: 0;
  }

  .site-brand-tagline {
    display: none;
  }

  .site-header-inner {
    padding: 12px 14px;
  }
}

.contact-page {
  color: var(--brand-text, #243433);
  background: var(--brand-bg, #fbf7ef);
  font-size: 18px;
  line-height: 1.75;
}

.contact-hero {
  padding: 56px 18px 24px;
}

.contact-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(217, 120, 50, 0.18), transparent 34%),
    linear-gradient(135deg, #0f5c5c 0%, #0a4141 100%);
  color: #ffffff;
  box-shadow: var(--brand-shadow, 0 14px 40px rgba(26, 43, 43, 0.08));
}

.contact-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 850px;
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.contact-hero p {
  max-width: 760px;
  margin: 0 0 1em;
  color: rgba(255, 255, 255, 0.9);
}

.contact-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 18px 72px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: start;
}

.contact-card {
  padding: 28px 24px;
  border: 1px solid var(--brand-border, #e7ded1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(26, 43, 43, 0.055);
}

.contact-card h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brand-teal-dark, #0a4141);
}

.contact-card ul {
  margin: 0;
  padding-left: 1.25em;
}

.contact-card li {
  margin-bottom: 10px;
}

.contact-form-card {
  border-top: 6px solid var(--brand-teal, #0f5c5c);
}

/* WPForms basic styling */
.contact-page .wpforms-container {
  margin: 0;
}

.contact-page .wpforms-field-label {
  color: var(--brand-text, #243433);
  font-weight: 800;
}

.contact-page .wpforms-field input,
.contact-page .wpforms-field textarea,
.contact-page .wpforms-field select {
  border-radius: 14px !important;
  border: 1px solid var(--brand-border, #e7ded1) !important;
  padding: 12px 14px !important;
  font-size: 16px !important;
}

.contact-page .wpforms-submit {
  padding: 14px 22px !important;
  border-radius: 999px !important;
  background: var(--brand-orange, #d97832) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 10px 24px rgba(217, 120, 50, 0.22) !important;
}

.contact-page .wpforms-submit:hover,
.contact-page .wpforms-submit:focus {
  background: #bd6527 !important;
}

@media (max-width: 860px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 22px 14px 18px;
  }

  .contact-hero-inner {
    border-radius: 24px;
  }

  .contact-content {
    padding: 24px 14px 56px;
  }

  .contact-card {
    padding: 22px 18px;
  }
}

html {
  scroll-behavior: smooth;
}

.guide-card {
  scroll-margin-top: 96px;
}

.guide-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid var(--guide-border, #e7ded1);
  backdrop-filter: blur(14px);
}

.guide-site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.guide-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--guide-teal-dark, #0a4141);
  text-decoration: none;
  flex: 0 0 auto;
}

.guide-site-brand:hover,
.guide-site-brand:focus {
  color: var(--guide-teal-dark, #0a4141);
  text-decoration: none;
}

.guide-site-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--guide-teal, #0f5c5c);
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(15, 92, 92, 0.16);
}

.guide-site-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.guide-site-brand-name {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.guide-site-brand-subtitle {
  margin-top: 2px;
  color: var(--guide-muted, #66736f);
  font-size: 12px;
  font-weight: 700;
}

.guide-site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.guide-site-nav a {
  flex: 0 0 auto;
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--guide-text, #243433);
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.guide-site-nav a:hover,
.guide-site-nav a:focus {
  background: var(--guide-blue-soft, #edf7f7);
  color: var(--guide-teal, #0f5c5c);
  text-decoration: none;
}

@media (max-width: 760px) {
  .guide-site-header-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 10px 14px;
  }

  .guide-site-nav {
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .guide-site-brand-subtitle {
    display: none;
  }
}


