/* ============================================================
   Breaks — Design System
   Based on Template 4 (Modern Travel)
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --ink: #0c2540;
  --ink-2: #2b4a6f;
  --muted: #5b7593;
  --line: #e4ecf5;
  --sky: #0ea5e9;
  --sky-2: #38bdf8;
  --sky-soft: #e6f4fc;
  --adv: #f97316;
  --adv-2: #ea580c;
  --sand: #fef3c7;

  --shadow-sm: 0 1px 2px rgba(12,37,64,.05);
  --shadow-md: 0 6px 16px rgba(12,37,64,.06);
  --shadow-lg: 0 16px 40px rgba(12,37,64,.10);
  --shadow-cta: 0 6px 16px rgba(249,115,22,.28);
  --shadow-cta-hover: 0 10px 24px rgba(249,115,22,.34);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font-family: inherit; font-size: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky; top: 0; z-index: 55;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, background 200ms;
}
.nav-wrap.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,.96);
}
.nav {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 20px; letter-spacing: -.02em;
}
.logo-mark {
  width: 28px; height: 28px; background: var(--sky); border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-links .current-menu-item a,
.nav-links .current_page_item a {
  background: var(--bg-soft); color: var(--ink);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: var(--ink); color: #fff;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
  transition: background 200ms var(--ease); cursor: pointer;
}
.nav-cta:hover { background: #0a1f33; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--r-md);
  font-size: 15px; font-weight: 600; cursor: pointer; border: 0;
  transition: all 220ms var(--ease); letter-spacing: -.005em;
}
.btn-primary {
  background: var(--adv); color: #fff; box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  background: var(--adv-2); transform: translateY(-1px);
  box-shadow: var(--shadow-cta-hover);
}
.btn-primary:focus-visible {
  outline: 0; box-shadow: var(--shadow-cta), 0 0 0 4px rgba(249,115,22,.25);
}
.btn-secondary {
  background: #fff; color: var(--ink); border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--ink-2); background: #fff; }
.btn-secondary:focus-visible { outline: 0; box-shadow: 0 0 0 4px rgba(14,165,233,.18); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #0a1f33; }
.btn-sky { background: var(--sky); color: #fff; box-shadow: 0 6px 16px rgba(14,165,233,.28); }
.btn-sky:hover { background: #0284c7; transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero {
  max-width: 1200px; margin: 0 auto; padding: 64px 24px 88px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px; background: var(--sky-soft); color: var(--ink);
  border-radius: var(--r-pill); font-size: 12px; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 22px;
}
.eyebrow-dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--sky); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
h1 {
  font-size: clamp(44px,5.5vw,72px); line-height: 1.04; letter-spacing: -.035em;
  font-weight: 700; margin: 0 0 22px; color: var(--ink);
}
h1 .accent { color: var(--adv); }
.lede {
  font-size: 19px; color: var(--ink-2); max-width: 520px;
  margin: 0 0 32px; line-height: 1.55;
}
.cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.hero-meta-item svg { width: 18px; height: 18px; color: var(--sky); flex-shrink: 0; }
.hero-meta-item strong { color: var(--ink); font-weight: 600; }

.hero-visual { position: relative; }
.hero-img {
  aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-soft); box-shadow: var(--shadow-lg);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; left: -24px; bottom: 32px;
  background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line);
}
.hero-card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--sky-soft); color: var(--sky);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; }
.hero-card-title { font-weight: 700; font-size: 14px; color: var(--ink); }
.hero-card-meta { font-size: 12px; color: var(--muted); margin-top: 1px; }
.hero-card-2 {
  position: absolute; right: -16px; top: 48px;
  background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
}
.hero-card-2 .num { font-weight: 700; font-size: 22px; color: var(--ink); letter-spacing: -.02em; }
.hero-card-2 .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ---------- Trust ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 24px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center;
}
.trust-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.trust-logos { display: flex; gap: 36px; flex-wrap: wrap; justify-content: center; }
.trust-logo { font-weight: 700; font-size: 15px; color: var(--ink-2); letter-spacing: -.01em; opacity: .65; transition: opacity 200ms; }
.trust-logo:hover { opacity: 1; }

/* ---------- Section ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 96px 24px; }
.section-head { text-align: center; margin-bottom: 48px; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--sky);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(32px,3.8vw,48px); line-height: 1.08; letter-spacing: -.03em;
  font-weight: 700; margin: 0 0 14px; color: var(--ink);
}
.section-head p { font-size: 18px; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* ---------- Activities ---------- */
.activities { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.activity {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), border-color 250ms var(--ease);
  display: flex; flex-direction: column;
}
.activity:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.activity:focus-visible { outline: 0; box-shadow: 0 0 0 4px rgba(14,165,233,.25); }
.activity-img { aspect-ratio: 4/3; background: var(--bg-soft); position: relative; overflow: hidden; }
.activity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.activity:hover .activity-img img { transform: scale(1.04); }
.activity-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  padding: 6px 12px 6px 8px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px;
}
.activity-badge-icon {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.activity-badge-icon svg { width: 11px; height: 11px; }
.a-cycling .activity-badge-icon { background: #0ea5e9; }
.a-golf .activity-badge-icon { background: #16a34a; }
.a-climbing .activity-badge-icon { background: #dc2626; }
.a-theatre .activity-badge-icon { background: #7c3aed; }
.a-fishing .activity-badge-icon { background: #0891b2; }
.a-soon .activity-badge-icon { background: #94a3b8; }
.activity-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.activity h3 { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin: 0; color: var(--ink); }
.activity p { font-size: 14.5px; color: var(--muted); margin: 0 0 6px; line-height: 1.55; flex: 1; }
.activity-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.activity-count { font-size: 12.5px; color: var(--ink-2); font-weight: 500; }
.activity-arrow {
  width: 32px; height: 32px; border-radius: 50%; background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all 250ms var(--ease);
}
.activity-arrow svg { width: 16px; height: 16px; transition: transform 250ms var(--ease); }
.activity:hover .activity-arrow { background: var(--adv); color: #fff; }
.activity:hover .activity-arrow svg { transform: translateX(2px); }

/* ---------- How it works ---------- */
.how { background: var(--bg-soft); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; counter-reset: step; }
.step { position: relative; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: #fff; color: var(--sky);
  border: 1px solid var(--line); border-radius: 50%;
  font-weight: 700; font-size: 18px; margin-bottom: 16px;
}
.step h3 { font-size: 21px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 10px; color: var(--ink); }
.step p { font-size: 15.5px; color: var(--ink-2); margin: 0; line-height: 1.6; }

/* ---------- Concierge ---------- */
.concierge { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.concierge-copy h2 {
  font-size: clamp(30px,3.4vw,42px); line-height: 1.1; letter-spacing: -.03em;
  font-weight: 700; margin: 0 0 18px; color: var(--ink);
}
.concierge-copy h2 .accent { color: var(--adv); }
.concierge-copy > .section-eyebrow { display: inline-block; margin-bottom: 14px; }
.concierge-copy p { font-size: 17px; color: var(--ink-2); margin: 0 0 22px; line-height: 1.55; max-width: 480px; }
.features { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.features li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-2); align-items: flex-start; }
.features li svg { width: 20px; height: 20px; color: var(--sky); flex-shrink: 0; margin-top: 1px; }
.chat-mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.chat-mock-head {
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px; background: var(--bg-soft);
}
.chat-mock-head .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--sky);
  box-shadow: 0 0 0 4px rgba(14,165,233,.18);
}
.chat-mock-head .label { font-size: 13px; font-weight: 600; color: var(--ink); }
.chat-mock-head .sub { font-size: 12px; color: var(--muted); margin-left: auto; }
.chat-mock-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; font-size: 14.5px; }
.chat-msg { display: flex; gap: 10px; max-width: 100%; }
.chat-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; color: #fff;
}
.chat-msg.user .chat-avatar { background: var(--ink); }
.chat-msg.bot .chat-avatar { background: var(--sky); }
.chat-text {
  background: var(--bg-soft); padding: 10px 14px; border-radius: 12px;
  line-height: 1.5; color: var(--ink-2);
}
.chat-msg.bot .chat-text { background: var(--sky-soft); color: var(--ink); }
.chat-msg.bot .chat-text strong { color: var(--adv); }

/* ---------- Testimonial ---------- */
.testimonial { background: var(--ink); color: #fff; }
.testimonial-inner { max-width: 900px; margin: 0 auto; padding: 96px 24px; text-align: center; }
.testimonial-stars { display: inline-flex; gap: 4px; color: var(--adv); margin-bottom: 24px; }
.testimonial-stars svg { width: 20px; height: 20px; fill: currentColor; }
.testimonial blockquote {
  font-size: clamp(24px,3vw,34px); line-height: 1.3; letter-spacing: -.02em;
  font-weight: 500; margin: 0 0 28px; color: #fff;
}
.testimonial blockquote::before, .testimonial blockquote::after { color: var(--adv); }
.testimonial-author { display: inline-flex; align-items: center; gap: 14px; font-size: 14px; color: rgba(255,255,255,.7); }
.testimonial-author .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--sky); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.testimonial-author strong { color: #fff; font-weight: 600; display: block; font-size: 14.5px; margin-bottom: 2px; }

/* ---------- CTA strip ---------- */
.cta-strip { padding: 80px 24px; text-align: center; }
.cta-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 64px 48px;
  background: linear-gradient(135deg, var(--adv) 0%, #fb923c 100%);
  color: #fff; border-radius: 24px; position: relative; overflow: hidden;
  box-shadow: 0 24px 60px rgba(249,115,22,.22);
}
.cta-strip-inner::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,255,255,.08); top: -180px; right: -180px;
}
.cta-strip-inner::after {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.06); bottom: -120px; left: -100px;
}
.cta-strip-inner > * { position: relative; z-index: 1; }
.cta-strip h3 {
  font-size: clamp(32px,4vw,52px); line-height: 1.05; letter-spacing: -.03em;
  font-weight: 700; margin: 0 0 14px; color: #fff;
}
.cta-strip p { font-size: 18px; color: rgba(255,255,255,.92); margin: 0 auto 32px; max-width: 560px; }
.cta-strip .btn-primary { background: #fff; color: var(--adv); box-shadow: 0 6px 16px rgba(0,0,0,.12); }
.cta-strip .btn-primary:hover { background: #fff; color: var(--adv-2); }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600;
}
.pill-sky { background: var(--sky-soft); color: var(--sky); }
.pill-adv { background: var(--adv); color: #fff; }
.pill-sand { background: var(--sand); color: #92400e; }
.pill-ink { background: var(--ink); color: #fff; }
.pill-outline { background: #fff; color: var(--ink); border: 1px solid var(--line); }

/* ---------- Fields ---------- */
.field {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line);
  border-radius: var(--r-md); background: var(--bg-soft);
  font-size: 15px; color: var(--ink); transition: all 200ms var(--ease);
}
.field::placeholder { color: var(--muted); }
.field:focus { background: #fff; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(14,165,233,.15); outline: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-top h4 {
  font-size: 24px; font-weight: 700; letter-spacing: -.02em;
  margin: 0 0 12px; color: #fff; display: flex; align-items: center; gap: 8px;
}
.footer-top .desc { max-width: 280px; font-size: 14px; color: rgba(255,255,255,.6); margin: 0; }
.footer-col h5 {
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
  font-weight: 700; color: rgba(255,255,255,.5); margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bot {
  padding-top: 24px; display: flex; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 8px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 60ms; }
.reveal-d2 { transition-delay: 120ms; }
.reveal-d3 { transition-delay: 180ms; }
.reveal-d4 { transition-delay: 240ms; }
.reveal-d5 { transition-delay: 300ms; }
.reveal-d6 { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- WordPress Content ---------- */
.entry-content { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.entry-content h2 {
  font-size: clamp(28px,3vw,40px); line-height: 1.12; letter-spacing: -.025em;
  font-weight: 700; margin: 48px 0 16px; color: var(--ink);
}
.entry-content h3 {
  font-size: clamp(22px,2.4vw,30px); line-height: 1.15; letter-spacing: -.02em;
  font-weight: 700; margin: 40px 0 12px; color: var(--ink);
}
.entry-content p { font-size: 17px; color: var(--ink-2); margin: 0 0 20px; line-height: 1.65; }
.entry-content ul, .entry-content ol { color: var(--ink-2); font-size: 17px; line-height: 1.65; margin: 0 0 20px; padding-left: 24px; }
/* All content links default to ink — overridden by prose rules below */
.entry-content a { color: var(--ink); text-decoration: none; }
.entry-content p > a,
.entry-content li > a,
.entry-content blockquote a { color: var(--sky); text-decoration: underline; text-underline-offset: 3px; }
.entry-content p > a:hover,
.entry-content li > a:hover,
.entry-content blockquote a:hover { color: var(--adv); }
.entry-content img { border-radius: var(--r-md); margin: 32px 0; }
.entry-content blockquote {
  border-left: 3px solid var(--adv); margin: 32px 0; padding: 16px 24px;
  background: var(--bg-soft); border-radius: 0 var(--r-md) var(--r-md) 0;
}
.entry-content blockquote p { color: var(--ink); font-style: italic; }

/* ---------- Page Header ---------- */
.page-header { padding: 64px 24px 32px; text-align: center; }
.page-header h1 { font-size: clamp(36px,4.5vw,56px); margin-bottom: 16px; }
.page-header .lede { margin: 0 auto; }

/* ---------- 404 ---------- */
.error-404 { text-align: center; padding: 120px 24px; }
.error-404 h1 { font-size: clamp(64px,10vw,120px); color: var(--adv); margin-bottom: 16px; }
.error-404 p { font-size: 19px; color: var(--ink-2); margin-bottom: 32px; }

/* ---------- Full-width landing page ---------- */
.landing-page .entry-content { max-width: none; padding: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 32px 20px 64px; gap: 48px; }
  .hero-card, .hero-card-2 { position: static; display: inline-flex; margin-top: 12px; }
  .hero-card-2 { margin-left: 12px; }
  .activities, .how-grid { grid-template-columns: 1fr; }
  .concierge { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
}

/* CTA strip inside .entry-content — override generic p rules */
.entry-content .cta-strip p {
  color: rgba(255,255,255,.92);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}
.entry-content .cta-strip h3 {
  text-align: center;
}
