/*
Theme Name: Two Roads Travels
Theme URI: https://tworoadstravels.com
Author: FNTR Consulting LLC
Author URI: https://tworoadstravels.com
Description: Custom theme for Two Roads Travels — expert relocation guidance for Americans moving abroad.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: two-roads-travels
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand: #F5F0E8;
  --sand-dark: #EDE6D6;
  --earth: #7A5C35;
  --earth-dark: #5C4526;
  --moss: #5C6B4A;
  --moss-light: #8A9B76;
  --bark: #3D2E1E;
  --stone: #4A4340;
  --cream: #FAF7F2;
  --warm-white: #FFFEF9;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--bark);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(139,111,71,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bark);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--earth);
  font-style: italic;
}

.custom-logo-link {
  display: flex;
  align-items: left;
}
.custom-logo {
  max-height: 108px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--earth); }

.nav-cta {
  background: var(--earth) !important;
  color: var(--warm-white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--earth-dark) !important; color: var(--warm-white) !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--earth);
  color: var(--warm-white);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--earth-dark); color: var(--warm-white); }

.btn-secondary {
  color: var(--earth);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--earth);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--earth-dark); }

.btn-light {
  background: var(--sand);
  color: var(--bark);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-light:hover { background: var(--sand-dark); color: var(--bark); }

.btn-outline-light {
  background: transparent;
  color: var(--sand);
  padding: 0.9rem 2rem;
  border: 1px solid rgba(245,240,232,0.4);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}

.btn-outline-light:hover { border-color: rgba(245,240,232,0.8); color: var(--sand); }

/* ── SECTION SHARED ── */
section { padding: 6rem 4rem; }

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--earth);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 1rem;
}

.section-title em { color: var(--earth); font-style: italic; }

.section-body {
  font-size: 1rem;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 3rem;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--warm-white);
  padding: 0 !important;
}

.hero-left {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--earth);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bark);
  margin-bottom: 1.5rem;
}

.hero-title em { color: var(--earth); font-style: italic; }

.hero-subtitle {
  font-size: 1rem;
  color: var(--stone);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-credential {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139,111,71,0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.credential-icon {
  width: 40px;
  height: 40px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-text {
  font-size: 0.8rem;
  color: var(--stone);
  line-height: 1.5;
}

.credential-text strong {
  color: var(--bark);
  font-weight: 500;
  display: block;
}

.hero-right {
  background: var(--sand);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* ── QUIZ CARD ── */
.quiz-card {
  position: relative;
  z-index: 2;
  background: var(--warm-white);
  border-radius: 4px;
  padding: 2rem;
  width: 320px;
  box-shadow: 0 20px 60px rgba(61,46,30,0.12);
}

.quiz-card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.75rem;
}

.quiz-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.quiz-card-body {
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.quiz-option {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(139,111,71,0.25);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--bark);
  cursor: pointer;
  transition: all 0.15s;
  background: transparent;
  text-align: left;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.quiz-option:hover, .quiz-option.selected {
  background: var(--sand);
  border-color: var(--earth);
  color: var(--earth-dark);
}

.quiz-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.quiz-dot {
  width: 24px;
  height: 3px;
  background: var(--sand-dark);
  border-radius: 2px;
}

.quiz-dot.active { background: var(--earth); }

/* ── SERVICES ── */
.services { background: var(--warm-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(139,111,71,0.15);
  border: 1.5px solid rgba(139,111,71,0.15);
  margin-top: 3rem;
}

.service-card {
  background: var(--warm-white);
  padding: 2.5rem;
  transition: background 0.2s;
}

.service-card:hover { background: var(--sand); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: rgba(139,111,71,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1rem;
}

.service-body {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(139,111,71,0.3);
  padding-bottom: 1px;
}

/* ── WHY SECTION ── */
.why { background: var(--bark); color: var(--sand); }
.why .section-eyebrow { color: var(--moss-light); }
.why .section-eyebrow::before { background: var(--moss-light); }
.why .section-title { color: var(--sand); }
.why .section-title em { color: var(--moss-light); }
.why .section-body { color: rgba(245,240,232,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 1rem;
}

.why-item { border-top: 1px solid rgba(245,240,232,0.15); padding-top: 1.5rem; }

.why-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sand);
  margin-bottom: 0.5rem;
}

.why-item-body { font-size: 0.875rem; color: rgba(245,240,232,0.6); line-height: 1.8; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 !important;
}

.about-strip-left { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }

.about-strip-right {
  background: var(--earth);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-strip-right .section-eyebrow { color: rgba(255,254,249,0.7); }
.about-strip-right .section-eyebrow::before { background: rgba(255,254,249,0.7); }
.about-strip-right .section-title { color: var(--warm-white); font-size: 2rem; max-width: 400px; }
.about-strip-right .section-title em { color: rgba(255,254,249,0.75); }
.about-strip-right .section-body { color: rgba(255,254,249,0.75); max-width: 380px; font-size: 0.9rem; }

.stat-row { display: flex; gap: 3rem; margin-top: 1rem; }

.stat { border-top: 1px solid rgba(245,240,232,0.3); padding-top: 1rem; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,254,249,0.6); }

/* ── TESTIMONIALS ── */
.testimonial { background: var(--warm-white); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }

.testimonial-card { padding: 2rem; border: 1px solid rgba(139,111,71,0.15); border-radius: 2px; }

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.testimonial-destination { font-size: 0.75rem; color: var(--earth); margin-top: 0.2rem; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--moss); text-align: center; padding: 5rem 4rem; }
.cta-strip .section-eyebrow { justify-content: center; color: rgba(245,240,232,0.7); }
.cta-strip .section-eyebrow::before { background: rgba(245,240,232,0.7); }
.cta-strip .section-title { color: var(--sand); margin: 0 auto 1rem; max-width: 560px; }
.cta-strip .section-title em { color: rgba(245,240,232,0.8); }
.cta-strip .section-body { color: rgba(245,240,232,0.7); margin: 0 auto 2.5rem; text-align: center; }

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── DIVIDER ── */
.divider-ornament { text-align: center; color: rgba(139,111,71,0.3); font-size: 1.2rem; letter-spacing: 0.5rem; margin: 0; padding: 1.5rem; background: var(--sand); }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--bark);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--sand); font-style: italic; }
.footer-tagline { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-top: 0.25rem; }

.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--sand); }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--warm-white);
  padding: 6rem 4rem 4rem;
  border-bottom: 1px solid rgba(139,111,71,0.1);
}

.page-hero .hero-eyebrow {
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bark);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.page-hero h1 em { color: var(--earth); font-style: italic; }

.page-hero p {
  font-size: 1rem;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.85;
  font-weight: 300;
}

/* ── INNER PAGE CONTENT ── */
.page-content {
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.page-content h2 em { color: var(--earth); font-style: italic; }

.page-content p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.85;
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.page-content p:first-child { margin-top: 0; }

/* ── CREDENTIAL BAR ── */
.credential-bar {
  background: var(--sand);
  padding: 2rem 4rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(139,111,71,0.15);
  border-bottom: 1px solid rgba(139,111,71,0.15);
}

.credential-item {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.credential-item::before {
  content: '·';
  color: var(--stone);
}

.credential-item:first-child::before { display: none; }

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 5rem 4rem;
  align-items: start;
}

.two-col-image {
  background: var(--sand);
  aspect-ratio: 3/4;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* ── COURSE PAGE ── */
.course-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(139,111,71,0.15);
  border: 1.5px solid rgba(139,111,71,0.15);
  margin-top: 2rem;
}

.module-item {
  background: var(--warm-white);
  padding: 2rem;
  transition: background 0.2s;
}

.module-item:hover { background: var(--sand); }

.module-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: rgba(139,111,71,0.2);
  margin-bottom: 0.5rem;
}

.module-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

.module-body {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.7;
}

/* ── CONTACT FORM ── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 5rem 4rem;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--bark);
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-detail {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.5rem;
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav.site-nav {
    padding: 1rem 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links { gap: 1.5rem; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right { min-height: 500px; }

  .services-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .about-strip { grid-template-columns: 1fr; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }

  .course-modules { grid-template-columns: 1fr; }

  .contact-section { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }

  section { padding: 4rem 2rem; }

  .page-hero { padding: 4rem 2rem 3rem; }

  .credential-bar { padding: 1.5rem 2rem; gap: 1.5rem; }

  footer.site-footer { flex-direction: column; gap: 2rem; padding: 2rem; text-align: center; }

  .footer-links { flex-wrap: wrap; justify-content: center; }
}
                                
/* ── WORDPRESS EDITOR CONTENT ── */
.wp-content p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 620px;
  font-weight: 400;
}
.wp-content p:last-child { margin-bottom: 0; }
.wp-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--bark);
  margin: 2rem 0 1rem;
}
.wp-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bark);
  margin: 1.5rem 0 0.75rem;
}
.wp-content strong { color: var(--bark); font-weight: 500; }
.wp-content em { color: var(--earth); font-style: italic; }
.wp-content ul, .wp-content ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--stone);
  line-height: 1.85;
}
.wp-content ul li, .wp-content ol li { margin-bottom: 0.5rem; }
.wp-content a { color: var(--earth); text-decoration: underline; text-underline-offset: 3px; }
