:root {
  --wine:      #6E1A37;
  --crimson:   #AE2448;
  --teal:      #72BAA9;
  --sage:      #D5E7B5;
  --bg:        #faf9f6;
  --bg-2:      #f3f1eb;
  --ink:       #1c0a12;
  --muted:     #7a6070;
  --border:    rgba(110,26,55,0.1);
  --white:     #ffffff;
  --nav-h:     64px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}
/* 
   7. SHARED SECTION TYPOGRAPHY
 */
.sec-tag {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.sec-title em { font-style: italic; color: var(--crimson); }

/* 
   8. HOW IT WORKS
 */
.section-how { padding: 64px 0; background: var(--bg-2); }

/* Mobile: single column */
.steps-row { display: flex; flex-direction: column; gap: 14px; margin-top: 1.2rem; }

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover                { box-shadow: 0 12px 40px rgba(110,26,55,0.1); transform: translateY(-3px); }
.step-card:hover::before        { opacity: 1; }
.step-num   { font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; color: rgba(174,36,72,0.25); line-height: 1; margin-bottom: 10px; }
.step-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--wine); margin-bottom: 7px; }
.step-text  { font-size: 0.9rem; font-weight: 300; line-height: 1.7; color: var(--ink); }

/* 
   9. POPULAR ROUTES
 */
.section-routes { padding: 64px 0; background: var(--bg); }

/* Mobile: single column */
.routes-row { display: flex; flex-direction: column; gap: 12px; margin-top: 1.2rem; }

.route-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}
.route-card:hover     { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(114,186,169,0.2); }
.route-icon           { width: 36px; height: 36px; background: rgba(114,186,169,0.15); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.route-from           { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.route-name           { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.route-link           { font-size: 0.75rem; font-weight: 500; color: var(--teal); margin-top: 4px; }
.route-card:hover .route-link::after { content: ' →'; }

/* 
   10. FEATURES
 */
.section-features {
  padding: 64px 0;
  background: var(--wine);
  position: relative;
  overflow: hidden;
}
.section-features::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(213,231,181,0.07) 0%, transparent 70%);
  bottom: -200px; right: -100px;
  pointer-events: none;
}
.sec-tag-light   { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color:var(--sage); margin-bottom: 10px; }
.sec-title-light { font-family: var(--font-head); font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 900; line-height: 1.15; color: var(--white); margin-bottom: 36px; }
.sec-title-light em { font-style: italic; color: var(--sage); }

/* Mobile: single column */
.features-row { display: flex; flex-direction: column; }

.feature-item {
  padding: 26px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-item:last-child { border-bottom: none; }
.feat-icon  { font-size: 1.4rem; }
.feat-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--sage); }
.feat-text  { font-size: 0.875rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.62); }
ul.wp-block-list {
    list-style: disc;
    margin: 1rem 0 1rem 1.5rem;
}
ul.wp-block-list ul {
    list-style: circle;
    margin: 1rem 0 1rem 1.5rem;
}
ul.wp-block-list li { margin-bottom: 0.5rem; }
.sec-p-light { color: rgba(255, 255, 255, 0.75); }
.table-data thead {
    color: rgba(255, 255, 255, 0.75);
    background: var(--wine);
    text-align: left;
    border-bottom: 0;
}
.table-data td, .table-data th {
    border: 1px solid var(--wine);
}
.table-data tbody>tr:nth-child(odd)>td, .table-data tbody>tr:nth-child(odd)>th {
    background-color: hsl(0 0% 50% / .091);
}
table tbody tr:hover>td, table tbody tr:hover>th {
    background-color: hsl(0 0% 50% / .102);
}
