:root {
  --blue: #3468AD;
  --blue-deep: #3468AD;
  --blue-ink: #3468AD;
  --blue-soft: #8eadd4;
  --yellow: #FFC343;
  --yellow-soft: #fff3d1;
  --paper: #fff;
  --ink: #323334;
  --muted: #323334;
  --line: rgba(50, 51, 52, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: #fff; }
.nav-shell { width: min(1180px, calc(100% - 48px)); height: 92px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.24); }
.brand-mark { justify-self: start; display: block; width: 74px; height: 70px; overflow: hidden; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a { position: relative; padding: 37px 0 31px; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 2px; background: var(--yellow); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after, .desktop-nav a.is-active::after { right: 0; }
.header-tools { justify-self: end; display: flex; align-items: center; gap: 10px; position: relative; }
.search-wrap { position: relative; }
.search-link { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: none; color: inherit; padding: 0; cursor: pointer; transition: .2s ease; }
.search-link:hover, .search-wrap.is-open .search-link { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.nav-search { display: none; position: absolute; right: 0; top: calc(100% + 10px); width: min(360px, calc(100vw - 48px)); padding: 8px; border-radius: 999px; background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.22); }
.search-wrap.is-open .nav-search { display: flex; gap: 6px; align-items: center; }
.nav-search input[type="search"] { flex: 1; min-width: 0; height: 42px; padding: 0 16px; border: 0; border-radius: 999px; color: var(--ink); background: transparent; outline: none; }
.nav-search button[type="submit"] { height: 42px; padding: 0 16px; border: 0; border-radius: 999px; background: var(--yellow); color: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mobile-menu { display: none; }

.hero { min-height: 780px; position: relative; display: grid; place-items: center; overflow: hidden; color: #fff; background: #000000; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: url("images/johny-cay.jpg"); background-size: cover; background-position: center 54%; opacity: 0.5; }
.hero-shade { position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, transparent 0, rgba(7, 46, 79, .08) 55%, rgba(7, 46, 79, .18) 100%); }
.hero-content { position: relative; z-index: 2; width: min(850px, calc(100% - 44px)); text-align: center; padding-top: 70px; animation: reveal .75s ease-out both; }
.eyebrow, .section-kicker { font-size: 11px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--yellow); }
.hero h1 { width: 100%; margin: 22px auto 24px; max-width: 850px; font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.045em; font-weight: 800; text-align: center; }
.hero-title-line { display: block; width: 100%; white-space: nowrap; text-align: center; }
.hero-copy { max-width: 650px; margin: 0 auto; color: rgba(255,255,255,.85); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; justify-content: center; gap: 13px; margin-top: 38px; }
.button { min-height: 52px; padding: 0 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--yellow) !important; color: var(--ink) !important; border: 1px solid var(--yellow) !important; box-shadow: 0 12px 28px rgba(52, 104, 173, .22); }
.button--primary:hover { background: #f0b430 !important; box-shadow: 0 16px 34px rgba(52,104,173,.3); }
.button--outline { background: rgba(8,47,77,.2) !important; color: #fff !important; border: 1px solid rgba(255,255,255,.58) !important; backdrop-filter: blur(7px); }
.button--outline:hover { background: rgba(255,255,255,.15) !important; }
.scroll-cue { position: absolute; z-index: 3; bottom: 0; left: 50%; transform: translateX(-50%); display: grid; justify-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: 8px; font-weight: 900; letter-spacing: .24em; }
.scroll-line { display: block; width: 1px; height: 45px; background: rgba(255,255,255,.55); }

.section-shell, .about-shell, .newsletter-shell, .footer-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.articles-section { padding: 118px 0 126px; background: var(--paper); }
.section-heading { margin-bottom: 48px; }
.section-kicker { margin: 0 0 14px; color: var(--blue); }
.section-heading h2, .about-copy h2, .newsletter-copy h2 { margin: 0; letter-spacing: -.045em; line-height: 1.02; }
.section-heading h2 { font-size: clamp(2.7rem, 5vw, 4.7rem); }
.section-heading > p { margin: 0 0 5px; max-width: 450px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.article-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(31,68,104,.13); }
.article-image-wrap { display: block; position: relative; aspect-ratio: 1.38; overflow: hidden; background: var(--blue-soft); }
.article-image { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.article-card:hover .article-image { transform: scale(1.045); }
.article-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(9,40,66,.4)); }
.article-number { position: absolute; z-index: 2; right: 18px; bottom: 12px; color: rgba(255,255,255,.72); font-size: 32px; font-weight: 900; letter-spacing: -.08em; }
.article-body { min-height: 312px; display: flex; flex-direction: column; padding: 28px 28px 26px; }
.article-meta { display: flex; justify-content: space-between; gap: 14px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.article-tags { display: flex; flex-wrap: wrap; gap: 6px; letter-spacing: 0; text-transform: none; }
.article-tags > span { padding: 5px 7px; background: var(--yellow); color: var(--ink); }
.article-date { color: var(--ink); }
.article-date strong { color: var(--blue); font-size: 16px; }
.article-author { margin-top: 18px; color: var(--blue); font-size: 11px; font-weight: 800; }
.article-body h3 { margin: 12px 0 13px; font-size: 22px; line-height: 1.18; letter-spacing: -.035em; }
.article-body h3 a { color: inherit; }
.article-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.article-body > a { margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-body > a svg { transition: transform .2s ease; }
.article-body > a:hover svg { transform: translateX(4px); }
.all-articles { margin: 42px auto 0; width: fit-content; display: flex; align-items: center; gap: 6px; padding-bottom: 6px; border-bottom: 1px solid var(--blue); color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.about-section { position: relative; overflow: hidden; padding: 134px 0; background: var(--yellow-soft); }
.about-section::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(52,104,173),.17); border-radius: 50%; left: -210px; top: -135px; }
.about-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.about-copy { position: relative; z-index: 2; }
.about-copy h2 { max-width: 560px; font-size: clamp(2.5rem, 4.6vw, 4.8rem); }
.about-lede { margin: 28px 0 15px !important; color: var(--ink) !important; font-weight: 800; }
.about-copy > p { max-width: 545px; margin: 0; color: var(--ink); font-size: 15px; line-height: 1.72; }
.proof-row { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 26px 0; }
.proof-row span { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; }
.proof-row svg { color: var(--blue); }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 5px; border-bottom: 1px solid var(--blue); color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.about-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.about-portrait { position: relative; z-index: 2; width: min(500px, 88%); filter: drop-shadow(0 28px 32px rgba(39,69,94,.2)); }
.portrait-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(52,104,173),.28); }
.portrait-orbit--large { width: 500px; height: 500px; max-width: 96%; max-height: 96%; }
.portrait-orbit--small { width: 380px; height: 380px; max-width: 76%; max-height: 76%; border-style: dashed; }
.route-stamp { position: absolute; z-index: 3; right: 2%; bottom: 6%; width: 112px; height: 112px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; gap: 7px; transform: rotate(9deg); box-shadow: 0 15px 30px rgba(21,65,101,.24); }
.route-stamp span { font-size: 9px; line-height: 1.1; font-weight: 900; letter-spacing: .08em; }

.newsletter-section { position: relative; overflow: hidden; padding: 112px 0; color: #fff; background-image: url("images/mykonos-cta.jpg"); background-size: cover; background-position: center; }
.newsletter-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(52,104,173,.94) 0%, rgba(52,104,173,.88) 52%, rgba(52,104,173,.69)); }
.newsletter-shell { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.section-kicker--light { color: var(--yellow); }
.newsletter-copy h2 { font-size: clamp(3rem, 5vw, 5.4rem); }
.newsletter-copy > p { max-width: 530px; margin: 18px 0 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; }
.signup-form { display: flex; flex-direction: column; align-items: stretch; gap: 14px; max-width: 450px; width: 100%; margin-left: auto; padding: 8px 0; border: 0; background: transparent; }
.signup-form input { width: 100%; height: auto; box-sizing: border-box; padding: 18px 20px; border-radius: 30px; border: 3px solid var(--blue); background: #fff; color: var(--ink); font-size: 16px; font-weight: 300; box-shadow: none; outline: none; }
.signup-form input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,195,67,.22); }
.email-field { position: relative; }
.email-field svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--ink); pointer-events: none; }
.email-field input { padding-left: 46px; }
.signup-button { width: 100%; min-width: 0; margin: 8px 0 0; align-self: stretch; box-shadow: 0 10px 28px rgba(255, 196, 65, .4); }
.form-note { grid-column: 1 / -1; margin: 2px 0 0; text-align: center; color: rgba(255,255,255,.58); font-size: 10px; }
.success-card { display: flex; align-items: center; gap: 18px; padding: 30px; border: 1px solid rgba(255,255,255,.28); border-radius: 28px; background: rgba(5,38,63,.4); backdrop-filter: blur(12px); }
.success-card > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--yellow); color: var(--ink); }
.success-card strong { font-size: 20px; }
.success-card p { margin: 6px 0 0; color: rgba(255,255,255,.7); font-size: 13px; }

footer { padding: 58px 0 28px; background: var(--blue); color: #fff; }
.footer-shell { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 38px; }
.footer-shell > p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; }
.social-links { justify-self: end; display: flex; gap: 9px; }
.social-links a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transition: .2s ease; }
.social-links a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.copyright { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); text-align: center; }

@keyframes reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fsc-lp .q-track {
    animation: none !important;
    flex-wrap: wrap;
    width: 100%;
    transform: none;
  }
  .fsc-lp .q-track .quote:nth-child(n+5) { display: none; }
}
@media (max-width: 900px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: 700px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card { display: grid; grid-template-columns: .78fr 1.22fr; }
  .article-image-wrap { aspect-ratio: auto; min-height: 310px; }
  .article-body { min-height: 310px; }
  .about-shell, .newsletter-shell { grid-template-columns: 1fr; gap: 66px; }
  .about-visual { width: min(600px, 100%); margin: 0 auto; }
  .newsletter-section { padding: 94px 0; }
}
@media (max-width: 620px) {
  .nav-shell, .section-shell, .about-shell, .newsletter-shell, .footer-shell { width: min(100% - 30px, 1180px); }
  .nav-shell { height: 76px; }
  .hero { min-height: 720px; }
  .hero::before { background-position: 62% center; }
  .hero-content { padding-top: 24px; }
  .hero h1 { font-size: clamp(1.75rem, 6.8vw, 2.65rem); }
  .hero-copy { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .articles-section { padding: 88px 0 94px; }
  .section-heading h2 { font-size: 3rem; }
  .article-card { display: block; }
  .article-image-wrap { aspect-ratio: 1.4; min-height: 0; }
  .article-body { min-height: 295px; padding: 24px 23px; }
  .about-section { padding: 92px 0 80px; }
  .about-copy h2 { font-size: 3.25rem; }
  .proof-row { display: grid; }
  .about-visual { min-height: 390px; }
  .postcard-card { width: 79%; left: 2%; }
  .route-stamp { width: 92px; height: 92px; right: 0; }
  .newsletter-shell { gap: 38px; }
  .newsletter-copy h2 { font-size: 3.5rem; }
  .signup-form { max-width: 100%; margin: 0 auto; padding: 0; }
  .signup-button, .form-note { grid-column: auto; }
  .footer-shell { grid-template-columns: 1fr auto; }
  .footer-shell > p:not(.copyright) { grid-column: 1 / -1; }
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 92px;
  left: 24px;
  right: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(52, 104, 173, .96);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}
.mobile-nav a {
  display: block;
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-menu {
  background: none;
  border: 0;
  color: inherit;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 900px) {
  .mobile-nav.is-open { display: block; }
}
.signup-form button { cursor: pointer; }

.site-header.is-solid { position: relative; background: var(--blue); }
.page-hero { background: var(--blue); color: #fff; padding: 72px 0 64px; }
.page-hero h1 { margin: 12px 0 18px; font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -.045em; line-height: 1.05; }
.page-hero p { max-width: 640px; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.7; }
.page-hero .hero-actions { justify-content: flex-start; margin-top: 28px; }
.catalog { padding: 88px 0; background: var(--paper); }
.catalog h2 { margin: 8px 0 16px; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.04em; }
.lede { max-width: 720px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.catalog-grid--two { grid-template-columns: repeat(2, 1fr); }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.product-kicker { margin: 0; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.product-card h2, .product-card h3 { margin: 0; letter-spacing: -.03em; }
.product-price { margin: 0; font-size: 28px; font-weight: 800; color: var(--ink); }
.product-price span { font-size: 14px; color: var(--muted); font-weight: 600; text-decoration: line-through; }
.product-card ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.6; }
.product-card .button { margin-top: auto; width: 100%; }
.product-note { color: var(--muted); font-size: 13px; }
.split-block { padding: 72px 0; background: var(--yellow-soft); }
.split-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.split-grid h2 { margin: 8px 0 16px; font-size: clamp(2rem, 4vw, 3.2rem); }
.split-photo { width: min(420px, 100%); justify-self: center; }
.includes, .steps { padding: 72px 0; }
.include-list, .step-list { max-width: 720px; color: var(--muted); line-height: 1.8; }
.legal-note { width: min(1180px, calc(100% - 48px)); margin: 0 auto 48px; color: var(--muted); font-size: 13px; }
.legal { padding: 56px 0 88px; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.04em; }
.legal h2 { margin-top: 32px; }
.legal p { max-width: 720px; color: var(--ink); line-height: 1.75; }
.footer-legal { grid-column: 1 / -1; margin: 0; }
.footer-legal a { color: rgba(255,255,255,.8); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.cookie-bar { position: fixed; z-index: 50; left: 50%; right: auto; bottom: 16px; transform: translateX(-50%); width: min(520px, calc(100% - 32px)); display: flex; gap: 16px; align-items: center; justify-content: space-between; padding: 16px 18px; border-radius: 16px; background: var(--blue); color: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.cookie-bar[hidden] { display: none; }
.cookie-bar p { margin: 0; font-size: 13px; max-width: 70ch; }
.cookie-bar a { text-decoration: underline; }
.search-results { padding: 56px 0 88px; background: var(--paper); }
.search-results h1 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.04em; }
.search-empty { color: var(--muted); font-size: 16px; line-height: 1.7; }
.section-cta { display: flex; justify-content: center; margin-top: 42px; }
.pager { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 48px; }
.pager a, .pager span { min-width: 42px; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 13px; font-weight: 700; text-align: center; }
.pager .current { background: var(--yellow); border-color: var(--yellow); }

.article-page { background: var(--paper); }
.article-head { padding: 36px 0 20px; }
.article-shell { width: min(840px, calc(100% - 48px)); margin: 0 auto; }
.article-shell--wide { width: min(1180px, calc(100% - 48px)); }
.article-back { display: inline-flex; align-items: center; margin-bottom: 22px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.article-chip { padding: 6px 10px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .02em; }
.article-head h1 { margin: 0 0 22px; font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -.045em; line-height: 1.12; color: var(--ink); }
.article-byline { display: flex; align-items: center; gap: 12px; margin: 0; color: var(--muted); font-size: 15px; }
.article-byline img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.article-byline span { display: flex; flex-direction: column; gap: 2px; }
.article-byline strong { color: var(--ink); font-size: 14px; }
.article-byline time { font-size: 13px; }
.article-cover { padding: 8px 0 8px; }
.article-cover img { width: 100%; max-height: 560px; object-fit: cover; border-radius: 28px; }
.article-body-wrap { padding: 36px 0 72px; }
.article-page .entry { font-size: 19px; line-height: 1.85; color: var(--ink); }
.article-page .entry > *:first-child { margin-top: 0; }
.article-page .entry p { margin: 0 0 1.25em; }
.article-page .entry h2 { margin: 1.7em 0 .55em; font-size: 1.7rem; letter-spacing: -.03em; line-height: 1.25; color: var(--ink); }
.article-page .entry h3 { margin: 1.45em 0 .4em; font-size: 1.28rem; letter-spacing: -.02em; color: var(--ink); }
.article-page .entry ul, .article-page .entry ol { margin: 0 0 1.3em; padding-left: 1.2em; }
.article-page .entry li { margin: 0 0 .45em; }
.article-page .entry a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article-page .entry img, .article-page .entry figure { width: 100%; max-width: 100%; height: auto; margin: 1.6em 0; border-radius: 18px; }
.article-page .entry figcaption, .article-page .entry .wp-caption-text { margin-top: -.9em; color: var(--muted); font-size: 14px; text-align: center; }
.article-page .entry blockquote { margin: 1.6em 0; padding: 8px 0 8px 22px; border-left: 4px solid var(--yellow); color: var(--ink); font-size: 1.08em; }
.article-page .entry table { width: 100%; display: block; overflow-x: auto; border-collapse: collapse; margin: 0 0 1.4em; }
.article-page .entry iframe, .article-page .entry video { width: 100%; max-width: 100%; border-radius: 16px; }
.article-page .alignwide, .article-page .alignfull { max-width: 100%; }
.article-page .elementor,
.article-page .e-con,
.article-page .e-con-boxed,
.article-page .e-con-inner,
.article-page .elementor-widget,
.article-page .elementor-widget-container,
.article-page .elementor-section,
.article-page .elementor-container,
.article-page .elementor-column { width: 100% !important; max-width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
.article-page .e-flex { display: block !important; }
.article-author-box { padding: 0 0 56px; }
.author-card { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.author-card img { border-radius: 50%; }
.author-card p { margin: 8px 0 0; color: var(--muted); line-height: 1.6; }
.related-articles { padding-top: 12px; }
.related-articles h2 { margin: 0 0 28px; font-size: 2rem; letter-spacing: -.04em; }

.article-page .pp-multiple-authors-boxes-wrapper,
.article-page .ppma-author-box,
.article-page .sharedaddy,
.article-page .jp-relatedposts,
.article-page .sidebar,
.article-page #secondary,
.article-page .widget-area { display: none !important; }
.article-page .aioseo-toc, .article-page .ez-toc, .article-page .lwptoc, .article-page #ez-toc-container { max-width: 100%; margin: 0 0 2em; padding: 20px 22px; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
@media (max-width: 900px) {
  .catalog-grid, .catalog-grid--two, .split-grid { grid-template-columns: 1fr; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .article-shell, .article-shell--wide { width: min(100% - 32px, 1180px); }
  .article-cover img { max-height: 320px; border-radius: 18px; }
  .article-page .entry { font-size: 17px; }
  .article-head h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}

body.page-consultations .site-header.is-solid { background: var(--blue); }
body.page-consultations .nav-shell { border-bottom-color: rgba(255,255,255,.22); }

.fsc-lp {
  --blue: #3468AD;
  --blue-d: #2a5490;
  --yellow: #FFC343;
  --yellow-d: #e8ae2e;
  --dark: #323334;
  --ink: #323334;
  --muted: #323334;
  --line: rgba(50, 51, 52, 0.14);
  --card: #fff;
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}
.fsc-lp .wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.fsc-lp .btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  transition: .15s;
  border: 2px solid transparent;
  text-align: center;
}
.fsc-lp .btn-primary { background: var(--yellow); color: var(--ink); }
.fsc-lp .btn-primary:hover { background: var(--yellow-d); }
.fsc-lp .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.fsc-lp .btn-ghost:hover { background: rgba(255,255,255,.12); }
.fsc-lp .btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.fsc-lp .btn-outline:hover { background: var(--blue); color: #fff; }
.fsc-lp .btn-blue { background: var(--blue); color: #fff; }
.fsc-lp .btn-blue:hover { background: var(--blue-d); }
.fsc-lp .hero {
  min-height: 0;
  display: block;
  overflow: visible;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 48px 0 72px;
}
.fsc-lp .hero::before,
.fsc-lp .hero-shade { display: none; }
.fsc-lp .hero .eyebrow { color: var(--yellow); font-weight: 700; letter-spacing: .14em; font-size: 13px; text-transform: uppercase; margin-bottom: 14px; }
.fsc-lp .hero h1 { font-size: clamp(2.1rem, 5vw, 3rem); font-weight: 800; line-height: 1.1; margin: 0 0 18px; letter-spacing: -.03em; }
.fsc-lp .hero p { font-size: 19px; max-width: 640px; margin: 0 auto 28px; color: #eaf0fb; }
.fsc-lp .hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.fsc-lp section { padding: 64px 0; }
.fsc-lp .eyebrow-c { color: var(--blue); font-weight: 700; letter-spacing: .14em; font-size: 13px; text-transform: uppercase; text-align: center; margin-bottom: 10px; }
.fsc-lp h2 { font-size: clamp(1.7rem, 4vw, 2.15rem); font-weight: 800; text-align: center; color: var(--dark); margin: 0 0 12px; letter-spacing: -.03em; }
.fsc-lp .lead { text-align: center; max-width: 720px; margin: 0 auto 8px; color: var(--muted); font-size: 18px; }
.fsc-lp .why { background: #f7f8fb; }
.fsc-lp .why-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: 44px; align-items: center; }
.fsc-lp .why-grid .eyebrow-c,
.fsc-lp .why-grid h2,
.fsc-lp .why-grid p { text-align: left; }
.fsc-lp .why-grid h2 { margin-bottom: 14px; }
.fsc-lp .why-grid p { margin: 0 0 14px; max-width: none; color: var(--ink); }
.fsc-lp .why-grid .signoff { font-weight: 700; color: var(--blue); margin: 2px 0 0; }
.fsc-lp .why-photo { display: flex; justify-content: center; }
.fsc-lp .why-photo img { max-width: 330px; width: 100%; height: auto; transform: rotate(-2deg); border: 1px solid var(--ink); box-shadow: 0 16px 36px rgba(50,51,52,.18); }
.fsc-lp .quotes { background: #fff; overflow: hidden; }
.fsc-lp .q-marquee {
  --q-gap: 22px;
  --q-n: 3;
  --q-w: calc((100cqi - (var(--q-n) - 1) * var(--q-gap)) / var(--q-n));
  container-type: inline-size;
  overflow: hidden;
  margin-top: 36px;
}
.fsc-lp .q-track {
  display: flex;
  gap: var(--q-gap);
  width: max-content;
  align-items: stretch;
  animation: fsc-quotes 42s linear infinite;
}
.fsc-lp .q-marquee:hover .q-track,
.fsc-lp .q-marquee:focus-within .q-track {
  animation-play-state: paused;
}
.fsc-lp .quote {
  box-sizing: border-box;
  flex: 0 0 var(--q-w);
  width: var(--q-w);
  display: flex;
  flex-direction: column;
  background: #f7f8fb;
  border-radius: 16px;
  padding: 26px 24px;
  border: 1px solid var(--line);
}
.fsc-lp .quote .stars { color: var(--yellow-d); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.fsc-lp .quote p { font-size: 16px; color: var(--ink); margin: 0 0 16px; }
.fsc-lp .quote .who { font-weight: 700; color: var(--dark); font-size: 14px; margin-top: auto; }
@keyframes fsc-quotes {
  to { transform: translateX(calc(-1 * var(--q-count) * (var(--q-w) + var(--q-gap)))); }
}
.fsc-lp .cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 36px; }
.fsc-lp .card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px; display: flex; flex-direction: column; box-shadow: 0 10px 26px rgba(50,51,52,.05); }
.fsc-lp .card .tag { font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.fsc-lp .card h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin: 0 0 4px; letter-spacing: -.02em; }
.fsc-lp .card .price { font-weight: 800; font-size: 28px; color: var(--blue); margin-bottom: 12px; }
.fsc-lp .card .desc { color: var(--muted); margin-bottom: 16px; }
.fsc-lp .card ul { list-style: none; margin: 0 0 22px; padding: 0; }
.fsc-lp .card li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: 15.5px; }
.fsc-lp .card li:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--yellow-d); font-weight: 800; }
.fsc-lp .card .btn { margin-top: auto; }
.fsc-lp .card.bundle { grid-column: 1 / -1; background: var(--blue); color: #fff; border: none; display: flex; flex-direction: row; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: space-between; }
.fsc-lp .card.bundle .tag { color: var(--yellow); }
.fsc-lp .card.bundle h3,
.fsc-lp .card.bundle .price { color: #fff; }
.fsc-lp .card.bundle .price { font-size: 32px; }
.fsc-lp .card.bundle .price span { font-size: 15px; font-weight: 600; opacity: .85; }
.fsc-lp .card.bundle .desc { color: #e7eefb; max-width: 520px; margin: 0; }
.fsc-lp .card.bundle .bx { flex: 1; min-width: 260px; }
.fsc-lp .card.oneoff { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 22px 40px; flex-wrap: wrap; }
.fsc-lp .card.oneoff .ox-info { flex: 1 1 300px; }
.fsc-lp .card.oneoff .ox-info .desc { margin-bottom: 0; }
.fsc-lp .card.oneoff ul { flex: 1 1 280px; margin: 0; }
.fsc-lp .card.oneoff .ox-cta { flex: 0 0 auto; }
.fsc-lp .card.oneoff .btn { margin: 0; }
.fsc-lp .dfy { background: var(--yellow); }
.fsc-lp .dfy-card { background: #fff; border-radius: 20px; padding: 48px 46px; box-shadow: 0 22px 50px rgba(50,51,52,.16); }
.fsc-lp .dfy-intro { max-width: 730px; margin: 0 auto; text-align: center; color: var(--ink); font-size: 17px; }
.fsc-lp .dfy-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 32px 0 4px; }
.fsc-lp .dfy-step { text-align: center; padding: 0 6px; }
.fsc-lp .dfy-step .n { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: 19px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.fsc-lp .dfy-step p { font-size: 14.5px; color: var(--ink); margin: 0; line-height: 1.5; }
.fsc-lp .dfy .small-note { max-width: 760px; margin: 20px auto 0; text-align: center; color: var(--muted); font-size: 14px; line-height: 1.6; }
.fsc-lp .dfy-buy { display: flex; align-items: stretch; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.fsc-lp .pp { background: #f7f8fb; border: 1px solid var(--line); border-radius: 14px; padding: 20px 28px; text-align: center; min-width: 210px; text-decoration: none; display: block; transition: .15s; color: inherit; }
.fsc-lp .pp:hover { border-color: var(--blue); box-shadow: 0 12px 26px rgba(65,103,168,.18); transform: translateY(-2px); }
.fsc-lp .pp .lbl { display: block; font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.fsc-lp .pp .amt { display: block; font-weight: 800; font-size: 26px; color: var(--dark); }
.fsc-lp .pp .go { display: block; margin-top: 8px; font-weight: 700; font-size: 13px; color: var(--blue); }
.fsc-lp .dfy-note { font-size: 12.5px; color: var(--muted); text-align: center; margin: 12px 0 0; }
.fsc-lp .includes { background: var(--blue); color: #fff; }
.fsc-lp .includes h2 { color: #fff; }
.fsc-lp .inc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 34px; max-width: 820px; margin: 34px auto 0; }
.fsc-lp .inc-grid div { position: relative; padding-left: 32px; font-size: 17px; }
.fsc-lp .inc-grid div:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--yellow); font-weight: 800; font-size: 19px; }
.fsc-lp .vat { text-align: center; color: #cdd9ef; font-size: 14px; margin-top: 26px; }
.fsc-lp .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 38px; }
.fsc-lp .step { text-align: center; }
.fsc-lp .step .n { width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.fsc-lp .step p { font-size: 15.5px; color: var(--ink); margin: 0; }
.fsc-lp .center-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.fsc-lp .note { background: #f7f8fb; padding: 34px 0; }
.fsc-lp .note p { max-width: 820px; margin: 0 auto; text-align: center; color: var(--muted); font-size: 14.5px; }
@media (max-width: 760px) {
  .fsc-lp .hero h1 { font-size: 34px; }
  .fsc-lp .why-grid { grid-template-columns: 1fr; }
  .fsc-lp .why-photo { order: -1; }
  .fsc-lp .why-photo img { max-width: 250px; }
  .fsc-lp .q-marquee { --q-n: 1; }
  .fsc-lp .cards,
  .fsc-lp .inc-grid { grid-template-columns: 1fr; }
  .fsc-lp .dfy-card { padding: 34px 22px; }
  .fsc-lp .dfy-steps,
  .fsc-lp .steps { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .fsc-lp .pp { flex: 1 1 45%; }
  .fsc-lp .card.bundle { flex-direction: column; text-align: center; }
  .fsc-lp .card.oneoff { flex-direction: column; }
}
