/*
Theme Name: Wakita World Atelier
Theme URI: https://wakitaworld.co.jp/
Author: Wakita World
Description: ワキタ・ワールド専用の軽量なフルサイト編集対応ブロックテーマ。
Version: 0.51.39
Requires at least: 6.6
Requires PHP: 7.4
Text Domain: wakita-world-atelier
*/

:root {
  --ww-navy-950: #0b1733;
  --ww-navy-900: #10234a;
  --ww-navy-800: #17345f;
  --ww-navy-700: #1e4a7a;
  --ww-navy-500: #356d9b;
  --ww-navy-200: #d6e2ee;
  --ww-navy-100: #e7eef6;
  --ww-navy-50: #f4f7fa;
  --ww-gold-600: #b68b3c;
  --ww-gold-100: #ffd465;
  --ww-text-muted: #566376;
  --ww-line: #d8e0ea;
  --ww-radius: 22px;
  --ww-shadow-1: 0 2px 8px rgba(11, 23, 51, .08), 0 1px 2px rgba(11, 23, 51, .05);
  --ww-shadow-2: 0 16px 36px rgba(11, 23, 51, .13), 0 4px 12px rgba(11, 23, 51, .07);
  --ww-duration-short: 180ms;
  --ww-duration-medium: 300ms;
  --ww-ease-standard: cubic-bezier(.2, 0, 0, 1);
}

/* Archived legacy pages */
.ww-legacy-closed-main {
  min-height: 68vh;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: #e6eef6;
}

.ww-legacy-closed-shell {
  display: flex;
  justify-content: center;
}

.ww-legacy-closed-card {
  position: relative;
  width: min(100%, 980px);
  overflow: hidden;
  padding: clamp(2.25rem, 6vw, 5.5rem);
  border: 1px solid rgba(11, 23, 51, 0.08);
  border-radius: clamp(1.5rem, 3vw, 2.75rem);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(11, 23, 51, 0.1);
}

.ww-legacy-closed-card::before {
  position: absolute;
  top: 0;
  left: clamp(2.25rem, 6vw, 5.5rem);
  width: 7.5rem;
  height: 0.35rem;
  border-radius: 0 0 999px 999px;
  background: #b68b3c;
  content: "";
}

.ww-legacy-closed-card h1 {
  max-width: 18em;
  margin: 1rem 0 0;
  color: var(--ww-navy-950);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.ww-legacy-closed-copy {
  max-width: 44rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  color: #53627a;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.9;
}

.ww-legacy-closed-copy p {
  margin: 0;
}

.ww-legacy-closed-copy p + p {
  margin-top: 0.4rem;
}

.ww-legacy-closed-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.ww-legacy-text-link {
  color: var(--ww-navy-950);
  font-weight: 700;
  text-decoration: none;
}

.ww-legacy-text-link span {
  display: inline-block;
  margin-left: 0.35em;
  transition: transform 180ms ease;
}

.ww-legacy-text-link:hover span,
.ww-legacy-text-link:focus-visible span {
  transform: translateX(0.25rem);
}

@media (max-width: 640px) {
  .ww-legacy-closed-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

html { scroll-behavior: smooth; }
body {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { text-underline-offset: .22em; text-decoration-thickness: 1px; }

:where(a, button, summary, input, textarea, select):focus-visible {
  outline: 3px solid var(--ww-gold-600);
  outline-offset: 3px;
}

.wp-element-button,
.wp-block-button__link {
  transition: transform var(--ww-duration-short) var(--ww-ease-standard),
    box-shadow var(--ww-duration-short) var(--ww-ease-standard),
    background-color var(--ww-duration-short) var(--ww-ease-standard),
    color var(--ww-duration-short) var(--ww-ease-standard);
}
.wp-element-button:hover,
.wp-block-button__link:hover { transform: translateY(-2px); box-shadow: var(--ww-shadow-1); }
.wp-element-button:active,
.wp-block-button__link:active { transform: translateY(0) scale(.98); }
.has-clay-background-color { background-color: var(--ww-gold-600) !important; }
.has-clay-background-color:hover { background-color: #9f762f !important; }
.has-ink-background-color { background-color: var(--ww-navy-950) !important; }
.has-sand-background-color { background-color: var(--ww-gold-100) !important; }
.has-paper-background-color { background-color: var(--ww-navy-50) !important; }
.has-sky-background-color { background-color: var(--ww-navy-100) !important; }

.ww-top-notice {
  position: relative;
  z-index: 31;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px clamp(20px, 4vw, 64px);
  color: #fff;
  background: var(--ww-navy-950);
}
.ww-top-notice::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--ww-gold-100);
  content: "";
}
.ww-top-notice p {
  margin: 0;
  color: inherit;
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.65;
  letter-spacing: .02em;
  text-align: center;
}

.ww-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(11, 23, 51, .08);
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 1px 0 rgba(11, 23, 51, .04);
  backdrop-filter: blur(14px);
  margin-bottom: 0 !important;
  transition: box-shadow var(--ww-duration-medium) var(--ww-ease-standard), background-color var(--ww-duration-medium) var(--ww-ease-standard);
}
.ww-header.is-scrolled { background: rgba(255, 255, 255, .98) !important; box-shadow: 0 8px 24px rgba(11, 23, 51, .09); }
body:has(.ww-home) .ww-header { border-bottom: 0; box-shadow: none; background: #fff !important; }
.admin-bar .ww-header { top: 32px; }
.ww-header .wp-block-site-title { white-space: nowrap; color: var(--ww-navy-950); }
.ww-header .wp-block-navigation-item__content {
  position: relative;
  padding: 8px 2px;
  text-decoration: none;
  transition: color var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-header .wp-block-navigation-item__content::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ww-gold-600);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-header .wp-block-navigation-item__content:hover,
.ww-header .wp-block-navigation-item__content:focus-visible { color: var(--ww-navy-700); }
.ww-header .wp-block-navigation-item__content:hover::after,
.ww-header .wp-block-navigation-item__content:focus-visible::after { transform: scaleX(1); }

.wp-site-blocks > header + main,
.wp-site-blocks > .ww-header + main { margin-block-start: 0 !important; }
.ww-home { overflow: hidden; margin-top: 0 !important; margin-bottom: 0 !important; }

.ww-hero-slider {
  position: relative;
  min-height: clamp(560px, 72vh, 780px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ww-navy-950);
  color: #fff;
  margin-top: 0 !important;
}
.ww-slider-track,
.ww-slide { position: absolute; inset: 0; }
.ww-home .ww-hero-slider {
  width: calc(100% - 64px);
  margin: 0 32px 32px !important;
  border-radius: 32px;
}
.ww-slide { margin: 0; opacity: 0; pointer-events: none; transition: opacity 600ms var(--ww-ease-standard); }
.ww-home .ww-hero-frame { display: flow-root; background: #fff; margin: 0 !important; }
.ww-slide.is-active { opacity: 1; }
.ww-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 7s linear;
}
.ww-slide.is-active img { transform: scale(1); }
.ww-slide:nth-child(2) img { object-position: center 48%; }
.ww-slide:nth-child(3) img { object-position: center 55%; }
.ww-slide:nth-child(4) img { object-position: center 52%; }
.ww-hero-slider::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 36, .25) 0%, rgba(8, 23, 49, .207) 42%, rgba(8, 23, 49, .065) 72%, rgba(8, 23, 49, .038) 100%);
  content: "";
  pointer-events: none;
}
.ww-slider-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  width: calc(100% - clamp(20px, 4vw, 64px) - clamp(20px, 4vw, 64px));
  min-height: clamp(560px, 72vh, 780px);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 clamp(112px, 13vw, 156px);
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.ww-hero-slider .ww-eyebrow { color: var(--ww-gold-100); font-size: 18px; }
.ww-hero-title {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6.2vw, 82px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.ww-hero-title > span { white-space: nowrap; }
@media (min-width: 782px) {
  .ww-home .ww-hero-slider,
  .ww-home .ww-slider-overlay { min-height: max(0px, calc(100svh - var(--ww-hero-top, 124px) - 32px)); }
  .ww-home .ww-slider-overlay { padding-top: clamp(24px, 6svh, 80px); padding-bottom: 104px; }
  .ww-home .ww-hero-title { font-size: clamp(40px, min(6.2vw, 9svh), 82px); }
}
.ww-hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.65vw, 22px);
  font-weight: 500;
  line-height: 1.85;
}
.ww-hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.ww-hero-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ww-navy-950);
  background: var(--ww-gold-100);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--ww-duration-short) var(--ww-ease-standard), background var(--ww-duration-short) var(--ww-ease-standard), box-shadow var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-hero-button:hover { transform: translateY(-2px); background: #ffe08d; box-shadow: 0 8px 24px rgba(0, 0, 0, .2); }
.ww-hero-button:active { transform: scale(.98); }
.ww-hero-button.is-secondary { border-color: rgba(255, 255, 255, .62); color: #fff; background: rgba(255, 255, 255, .08); backdrop-filter: blur(8px); }
.ww-hero-button.is-secondary:hover { background: rgba(255, 255, 255, .18); }
@media (min-width: 901px) {
  .ww-home .ww-hero-button { min-height: 66px; padding-right: 53px; padding-left: 53px; font-size: 18px; }
}
.ww-slider-controls {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 64px);
  bottom: 32px;
  left: clamp(20px, 4vw, 64px);
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
  gap: 9px;
}
.ww-slider-control {
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  padding: 0 13px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 23, 49, .48);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform var(--ww-duration-short) var(--ww-ease-standard), background var(--ww-duration-short) var(--ww-ease-standard), border-color var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-slider-control:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .8); background: rgba(23, 52, 95, .88); }
.ww-slider-control:active { transform: scale(.96); }
.ww-slider-dots { display: flex; gap: 0; margin: 0; }
.ww-slider-dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width var(--ww-duration-medium) var(--ww-ease-standard), background var(--ww-duration-short) var(--ww-ease-standard), transform var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-slider-dot::before { content: ''; width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.46); transition: width .2s ease, background .2s ease; }
.ww-slider-dot:hover::before { background: rgba(255,255,255,.8); }
.ww-slider-dot.is-active { width: 28px; background: transparent; }
.ww-slider-dot.is-active::before { width: 24px; background: var(--ww-gold-100); }
.ww-slider-controls { gap: 6px; }
.ww-slider-control[data-ww-pause] { width: 44px; padding: 0; }
/* Clip decorative overflow without allowing focus to scroll the hero internally. */
@supports (overflow: clip) {
  .ww-hero-slider { overflow: clip; }
}
@media (max-width: 359px) {
  .ww-home .ww-slider-controls { gap: 4px; }
  .ww-home .ww-slider-dot,
  .ww-home .ww-slider-dot.is-active { width: 24px; min-width: 24px; flex: 0 0 24px; }
  .ww-home .ww-slider-dot.is-active::before { width: 20px; }
}
.ww-slider-dot:focus-visible, .ww-slider-control:focus-visible { outline: 2px solid var(--ww-gold-100); outline-offset: 3px; }
.ww-news,
.ww-about,
.ww-strengths,
.ww-tours,
.ww-faq { padding-top: clamp(72px, 9vw, 128px); padding-bottom: clamp(72px, 9vw, 128px); }
.ww-section-title { margin-top: 0; margin-bottom: 16px; color: var(--ww-navy-950); font-size: clamp(30px, 3.6vw, 48px) !important; line-height: 1.35; letter-spacing: -.035em; }
.ww-section-intro { margin: 0 auto 42px; color: var(--ww-text-muted); }
.ww-eyebrow { margin-bottom: 16px; color: var(--ww-gold-600); font-size: 12px; font-weight: 750; letter-spacing: .16em; }
.ww-choice-grid { gap: 24px; align-items: stretch !important; }
.ww-choice-card { overflow: hidden; border: 1px solid var(--ww-line); border-radius: var(--ww-radius); box-shadow: var(--ww-shadow-1); transition: transform var(--ww-duration-medium) var(--ww-ease-standard), box-shadow var(--ww-duration-medium) var(--ww-ease-standard), border-color var(--ww-duration-short) var(--ww-ease-standard); }
.ww-choice-card:hover,
.ww-choice-card:focus-within { transform: translateY(-5px); border-color: #bdcada; box-shadow: var(--ww-shadow-2); }
.ww-choice-card figure { margin: 0; overflow: hidden; }
.ww-choice-card figure img { display: block; width: 100%; aspect-ratio: 14/8; object-fit: cover; transition: transform 500ms var(--ww-ease-standard); }
.ww-choice-card:hover figure img { transform: scale(1.035); }
.ww-choice-card h3,
.ww-choice-card > p { margin-right: 26px; margin-left: 26px; }
.ww-choice-card h3 { margin-top: 24px; font-size: 23px; }
.ww-choice-card > p { color: var(--ww-text-muted); font-size: 15px; line-height: 1.75; }
.ww-choice-card .ww-card-link { margin-top: 22px; margin-bottom: 26px; }
.ww-card-peach,
.ww-card-sky,
.ww-card-mint { background: #fff; }
.ww-card-link a { display: flex; align-items: center; justify-content: space-between; color: var(--ww-navy-950); font-weight: 700; text-decoration: none; }
.ww-card-link span { display: inline-grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: #fff; background: var(--ww-navy-950); transition: transform var(--ww-duration-short) var(--ww-ease-standard), background var(--ww-duration-short) var(--ww-ease-standard); }
.ww-card-link a:hover span,
.ww-card-link a:focus-visible span { transform: translateX(3px); background: var(--ww-navy-700); }
.ww-news { background: var(--ww-navy-50) !important; }
.ww-home .ww-hero-frame + .ww-news {
  margin-top: 0 !important;
  background: linear-gradient(to bottom, #fff 0, var(--ww-navy-50) clamp(64px, 8vw, 120px)) !important;
}
.ww-news-grid {
  align-items: flex-start;
  gap: clamp(40px, 7vw, 104px);
  padding: clamp(38px, 5vw, 68px);
  border: 1px solid rgba(11, 23, 51, .06);
  border-radius: var(--ww-radius);
  color: var(--ww-navy-950);
  background: #fff;
  box-shadow: 0 14px 40px rgba(11, 23, 51, .035);
}
.ww-news-grid .ww-eyebrow { color: #b68b3c; }
.ww-news-grid .ww-section-title { color: var(--ww-navy-950); }
.ww-news-grid > .wp-block-column:first-child { padding-top: 8px; }
.ww-news-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ww-line);
  list-style: none;
}
.ww-news-list li {
  display: grid;
  min-height: 108px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 22px 10px;
  border-bottom: 1px solid var(--ww-line);
  line-height: 1.85;
}
.ww-news-index {
  align-self: start;
  padding-top: 5px;
  color: var(--ww-gold-600);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}
.ww-news-copy { color: var(--ww-navy-950); font-size: clamp(15px, 1.3vw, 17px); }
.ww-about-grid { gap: clamp(40px, 7vw, 100px); }
.ww-about-illustration { overflow: hidden; border-radius: 26px; box-shadow: var(--ww-shadow-2); }
.ww-about-illustration img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 600ms var(--ww-ease-standard); }
.ww-about-illustration:hover img { transform: scale(1.025); }
.ww-about-copy { margin-top: 0; font-size: clamp(18px, 1.8vw, 23px); line-height: 1.9; }
.ww-about-link { margin-top: 28px; }
.ww-about-link a {
  display: inline-flex;
  width: auto;
  min-height: 48px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ww-navy-950);
  background: var(--ww-gold-100);
  font-size: 14px;
  font-weight: 700;
  transition: color var(--ww-duration-short) var(--ww-ease-standard), background var(--ww-duration-short) var(--ww-ease-standard), transform var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-about-link a:hover,
.ww-about-link a:focus-visible { color: var(--ww-navy-950); background: #ffe08d; transform: translateY(-2px); }
.ww-point-grid { gap: 14px; margin-top: 36px; }
.ww-point-grid > .wp-block-column { padding: 22px; border-radius: 18px; background: #fff; transition: transform var(--ww-duration-short) var(--ww-ease-standard), box-shadow var(--ww-duration-short) var(--ww-ease-standard); }
.ww-point-grid > .wp-block-column:hover { transform: translateY(-3px); box-shadow: var(--ww-shadow-1); }
.ww-point-grid p { margin: 0; line-height: 1.55; }
.ww-point-number { margin-bottom: 12px !important; color: var(--ww-gold-600); font-size: 26px; font-weight: 750; }
.ww-point-grid small { color: var(--ww-text-muted); }
.ww-strength-grid { gap: 20px; margin-top: 20px; align-items: stretch !important; }
.ww-strength-grid > .wp-block-column { padding: 28px; border: 1px solid var(--ww-line); border-radius: 20px; background: #fff; transition: transform var(--ww-duration-medium) var(--ww-ease-standard), box-shadow var(--ww-duration-medium) var(--ww-ease-standard), border-color var(--ww-duration-short) var(--ww-ease-standard), background var(--ww-duration-short) var(--ww-ease-standard); }
.ww-strength-grid > .wp-block-column:hover,
.ww-strength-grid > .wp-block-column:focus-within { transform: translateY(-5px); border-color: #bdcada; background: #fbfdff; box-shadow: var(--ww-shadow-2); }
.ww-strength-grid h3 { margin-top: 22px; color: var(--ww-navy-950); font-size: 22px; }
.ww-strength-grid p:last-child { color: var(--ww-text-muted); font-size: 15px; line-height: 1.85; }
.ww-strength-number { display: grid; width: 42px; height: 42px; margin: 0; place-items: center; border-radius: 50%; color: var(--ww-navy-950); background: var(--ww-gold-100); font-size: 12px; font-weight: 750; }
.ww-tour-grid { gap: 24px; margin-top: 42px; align-items: stretch !important; }
.ww-tour-card { overflow: hidden; border: 1px solid var(--ww-line); border-radius: 24px; background: #fff; box-shadow: var(--ww-shadow-1); transition: transform var(--ww-duration-medium) var(--ww-ease-standard), box-shadow var(--ww-duration-medium) var(--ww-ease-standard), border-color var(--ww-duration-short) var(--ww-ease-standard); }
.ww-tour-card:hover,
.ww-tour-card:focus-within { transform: translateY(-6px); border-color: #bdcada; box-shadow: var(--ww-shadow-2); }
.ww-tour-card figure { margin: 0; overflow: hidden; }
.ww-tour-card figure img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 600ms var(--ww-ease-standard); }
.ww-tour-card:hover figure img { transform: scale(1.04); }
.ww-tour-card h3,
.ww-tour-card > p { margin-right: 30px; margin-left: 30px; }
.ww-tour-card .ww-tour-kicker { margin-top: 28px; margin-bottom: 10px; color: var(--ww-gold-600); font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.ww-tour-card h3 { margin-top: 0; color: var(--ww-navy-950); font-size: 24px; }
.ww-tour-card > p { color: var(--ww-text-muted); font-size: 15px; line-height: 1.85; }
.ww-tour-card .ww-card-link { margin-top: 24px; margin-bottom: 30px; }
.ww-tour-card .ww-card-link span { color: var(--ww-navy-950); background: var(--ww-gold-100); }
.ww-tour-card .ww-card-link a:hover span,
.ww-tour-card .ww-card-link a:focus-visible span { color: var(--ww-navy-950); background: #ffe08d; }
.ww-service-list { gap: 20px; margin-top: 42px; margin-bottom: 36px; }
.ww-service-list > .wp-block-column { padding: 30px; border: 1px solid var(--ww-line); border-radius: 20px; background: #fff; transition: transform var(--ww-duration-medium) var(--ww-ease-standard), box-shadow var(--ww-duration-medium) var(--ww-ease-standard); }
.ww-service-list > .wp-block-column:hover { transform: translateY(-5px); box-shadow: var(--ww-shadow-2); }
.ww-service-icon { display: grid; width: 42px; height: 42px; margin-top: 0; place-items: center; border-radius: 50%; color: var(--ww-navy-950); background: var(--ww-gold-100); font-size: 13px; font-weight: 750; }
.ww-service-list h3 { margin-top: 28px; font-size: 23px; }
.ww-service-list p:last-child { color: var(--ww-text-muted); font-size: 15px; line-height: 1.8; }
.ww-faq-grid { gap: clamp(36px, 7vw, 96px); }
.ww-faq-items {
  overflow: hidden;
  border: 1px solid rgba(11, 23, 51, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .62);
}
.ww-faq-items details {
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(11, 23, 51, .12);
  background: transparent;
  transition: background-color var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-faq-items details:last-of-type { border-bottom: 0; }
.ww-faq-items details:hover,
.ww-faq-items details:focus-within,
.ww-faq-items details[open] { background: #fff; }
.ww-faq-items summary {
  position: relative;
  padding: 22px 64px 22px 22px;
  color: var(--ww-navy-950);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  transition: color var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-faq-items summary::-webkit-details-marker { display: none; }
.ww-faq-items summary::marker { content: ""; }
.ww-faq-items summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--ww-navy-950);
  background:
    linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 14px no-repeat,
    var(--ww-gold-100);
  content: "";
  transform: translateY(-50%);
  transition: transform var(--ww-duration-short) var(--ww-ease-standard),
    background-color var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-faq-items summary:hover::after { transform: translateY(-50%) scale(1.06); }
.ww-faq-items details[open] summary::after {
  background:
    linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat,
    var(--ww-navy-100);
}
.ww-faq-items details p {
  margin: 0;
  padding: 0 64px 24px 22px;
  color: var(--ww-text-muted);
  font-size: 15px;
  line-height: 1.85;
}
.ww-faq-items details[open] p { animation: ww-faq-reveal var(--ww-duration-medium) var(--ww-ease-standard); }
@keyframes ww-faq-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ww-faq-items .ww-card-link { margin-top: 24px; }

.ww-inner-page { margin: 0; color: var(--ww-navy-950); background: #fff; }
.ww-page-container { width: min(100% - clamp(40px, 8vw, 128px), 1280px); margin-right: auto; margin-left: auto; }
.ww-page-hero {
  padding-top: clamp(82px, 10vw, 138px);
  padding-bottom: clamp(72px, 9vw, 118px);
  color: #fff;
  background: #132345;
}
.ww-page-kicker { margin: 0 0 18px; color: var(--ww-gold-100); font-size: 12px; font-weight: 700; letter-spacing: .17em; }
.ww-course-page .ww-page-section .ww-page-kicker { color: #b68b3c; }
.ww-page-title { max-width: 900px; margin: 0; color: #fff; font-size: clamp(42px, 6vw, 72px); font-weight: 500; line-height: 1.24; letter-spacing: -.045em; }
.ww-page-lead { max-width: 720px; margin: 26px 0 0; color: rgba(255, 255, 255, .82); font-size: clamp(16px, 1.7vw, 20px); line-height: 1.9; }
.ww-page-section { padding-top: clamp(72px, 9vw, 128px); padding-bottom: clamp(72px, 9vw, 128px); }
.ww-page-section-heading { margin-bottom: clamp(34px, 5vw, 60px); }
.ww-page-section-heading h2 { margin: 0; color: var(--ww-navy-950); font-size: clamp(30px, 3.8vw, 48px); font-weight: 500; letter-spacing: -.035em; }
.ww-page-section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.ww-page-section-heading-row > p { margin: 0 0 7px; color: var(--ww-text-muted); font-size: 14px; }
.ww-page-index { margin: 0 0 22px; color: var(--ww-gold-600); font-size: 12px; font-weight: 700; letter-spacing: .13em; }

.ww-philosophy-section { background: #fff; }
.ww-philosophy-grid { display: block; }
.ww-philosophy-item {
  display: grid;
  grid-template-columns: minmax(210px, .38fr) minmax(0, 1fr);
  gap: clamp(46px, 8vw, 118px);
  align-items: start;
  padding: clamp(38px, 5vw, 58px) 0;
  border-top: 1px solid var(--ww-line);
}
.ww-philosophy-item:last-child { border-bottom: 1px solid var(--ww-line); }
.ww-philosophy-heading .ww-page-kicker { margin-bottom: 18px; }
.ww-company-page .ww-page-section .ww-page-kicker { color: #b68b3c; }
.ww-philosophy-item h2 { margin: 0; color: var(--ww-navy-950); font-size: clamp(30px, 3.8vw, 48px); font-weight: 500; letter-spacing: -.035em; }
.ww-philosophy-item > p { margin: 0; color: var(--ww-text-muted); font-size: 16px; line-height: 2; }
.ww-company-layout { display: grid; grid-template-columns: minmax(210px, .38fr) minmax(0, 1fr); gap: clamp(46px, 8vw, 118px); align-items: start; }
.ww-profile-list,
.ww-compact-list { margin: 0; }
.ww-profile-list > div { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 28px; padding: 22px 0; border-top: 1px solid var(--ww-line); }
.ww-profile-list > div:last-child { border-bottom: 1px solid var(--ww-line); }
.ww-profile-list dt,
.ww-compact-list dt { color: var(--ww-navy-950); font-weight: 700; }
.ww-profile-list dd,
.ww-compact-list dd { margin: 0; color: var(--ww-text-muted); line-height: 1.85; }
.ww-profile-list a { color: var(--ww-navy-700); }
.ww-company-detail-section { background: var(--ww-navy-50); }
.ww-company-detail-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(48px, 8vw, 112px); }
.ww-compact-list > div { display: grid; grid-template-columns: minmax(180px, .85fr) minmax(0, 1fr); gap: 24px; padding: 20px 0; border-top: 1px solid var(--ww-line); }
.ww-compact-list > div:last-child { border-bottom: 1px solid var(--ww-line); }
.ww-client-copy { margin: 0; padding-top: 22px; border-top: 1px solid var(--ww-line); color: var(--ww-text-muted); line-height: 2; }

.ww-page-card-grid { display: grid; gap: clamp(24px, 3vw, 38px); }
.ww-page-card-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ww-model-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ww-page-card { overflow: hidden; border: 1px solid var(--ww-line); border-radius: 22px; background: #fff; box-shadow: var(--ww-shadow-1); transition: transform var(--ww-duration-medium) var(--ww-ease-standard), box-shadow var(--ww-duration-medium) var(--ww-ease-standard), border-color var(--ww-duration-short) var(--ww-ease-standard); }
.ww-page-card:hover,
.ww-page-card:focus-within { border-color: #bdcada; box-shadow: var(--ww-shadow-2); transform: translateY(-6px); }
.ww-page-card-image { display: block; overflow: hidden; }
.ww-page-card-image img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 600ms var(--ww-ease-standard); }
.ww-page-card:hover .ww-page-card-image img { transform: scale(1.04); }
.ww-page-card-body { padding: clamp(24px, 3vw, 36px); }
.ww-page-card-body h2,
.ww-page-card-body h3 { margin: 0 0 18px; color: var(--ww-navy-950); font-weight: 500; line-height: 1.45; }
.ww-page-card-body h2 { font-size: clamp(27px, 3vw, 36px); }
.ww-page-card-body h3 { font-size: clamp(22px, 2.3vw, 29px); }
.ww-page-card-body h2 a,
.ww-page-card-body h3 a { color: inherit; text-decoration: none; }
.ww-page-card-body > p { margin: 0; color: var(--ww-text-muted); font-size: 15px; line-height: 1.9; }
.ww-page-text-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; color: var(--ww-navy-950); font-size: 14px; font-weight: 700; text-decoration: none; }
.ww-page-text-link span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--ww-navy-950); background: var(--ww-gold-100); transition: transform var(--ww-duration-short) var(--ww-ease-standard); }
.ww-page-text-link:hover span,
.ww-page-text-link:focus-visible span { transform: translateX(4px); }
.ww-tour-index-section { background: #e6eef6; }
.ww-tour-editorial-list { display: grid; gap: clamp(28px, 3.5vw, 44px); }
.ww-tour-editorial-item { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); align-items: stretch; overflow: hidden; border: 1px solid rgba(11, 23, 51, .1); border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(11, 23, 51, .06); }
.ww-tour-editorial-item:nth-child(even) { grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr); }
.ww-tour-editorial-item:nth-child(even) .ww-tour-editorial-image { order: 2; }
.ww-tour-editorial-image { display: block; min-height: 420px; overflow: hidden; }
.ww-tour-editorial-image img { display: block; width: 100%; height: 100%; min-height: 420px; object-fit: cover; transition: transform 600ms var(--ww-ease-standard), filter var(--ww-duration-medium) var(--ww-ease-standard); }
.ww-tour-editorial-item:hover .ww-tour-editorial-image img,
.ww-tour-editorial-item:focus-within .ww-tour-editorial-image img { filter: saturate(1.04); transform: scale(1.025); }
.ww-tour-editorial-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 76px); }
.ww-tour-editorial-copy .ww-page-kicker { color: var(--ww-gold-600); }
.ww-tour-editorial-copy h2 { margin: 0 0 24px; color: var(--ww-navy-950); font-size: clamp(30px, 3.8vw, 48px); font-weight: 500; letter-spacing: -.035em; }
.ww-tour-editorial-copy h2 a { color: inherit; text-decoration: none; }
.ww-tour-editorial-copy > p:not(.ww-page-kicker) { margin: 0; color: var(--ww-text-muted); font-size: 16px; line-height: 2; }
.ww-overseas-section { background: var(--ww-navy-50); }

.ww-contact-layout { display: grid; grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr); gap: clamp(42px, 6vw, 88px); align-items: start; }
.ww-contact-form-section > .ww-contact-layout {
  width: min(100%, 1280px);
  max-width: 1280px !important;
  margin-inline: auto;
}
.ww-contact-layout > * { margin-block-start: 0 !important; }
.ww-contact-details-column { min-width: 0; }
.ww-contact-details { display: flex; flex-direction: column; gap: 42px; }
.ww-contact-item { padding-top: 24px; border-top: 1px solid var(--ww-line); }
.ww-contact-item h2 { margin: 0 0 18px; color: var(--ww-navy-950); font-size: 24px; font-weight: 500; }
.ww-contact-item address,
.ww-contact-phone { font-size: 16px; line-height: 1.85; }
.ww-contact-item address { color: var(--ww-text-muted); font-style: normal; }
.ww-contact-phone { color: var(--ww-navy-950); text-decoration-color: var(--ww-gold-600); text-underline-offset: 7px; }
.ww-contact-map { min-height: 310px; margin-top: 42px; overflow: hidden; border-radius: 20px; background: var(--ww-navy-100); box-shadow: var(--ww-shadow-1); }
.ww-contact-map iframe { display: block; width: 100%; height: 100%; min-height: 310px; border: 0; filter: saturate(.78) contrast(.96); }
.ww-contact-form-section {
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 64px);
  background: #e6eef6;
}
.ww-contact-form-shell {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(11, 23, 51, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 23, 51, .07);
}
.ww-contact-form-shell .ww-page-kicker { margin-bottom: 18px; color: var(--ww-gold-600); }
.ww-contact-form-shell h2 {
  margin: 0 0 clamp(34px, 5vw, 52px);
  color: var(--ww-navy-950);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -.035em;
}
.ww-contact-form-shell .wpcf7-form > p { margin: 0 0 24px; }
.ww-contact-form-shell .wpcf7-form,
.ww-contact-form-shell .wpcf7-form > p,
.ww-contact-form-shell .wpcf7-form-control-wrap { min-width: 0; max-width: 100%; }
.ww-contact-form-shell .wpcf7-form label {
  display: block;
  color: var(--ww-navy-950);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}
.ww-contact-form-shell .wpcf7-form-control-wrap { display: block; margin-top: 10px; }
.ww-contact-form-shell { scroll-margin-top: 110px; }
.ww-field-required { display: inline-block; margin-inline-start: 10px; padding: 1px 7px; border-radius: 4px; color: #704f16; background: #fff3d6; font-size: 12px; font-weight: 600; vertical-align: middle; }
.ww-contact-form-shell .wpcf7-form-control:not(.wpcf7-submit) {
  box-sizing: border-box;
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #c8d3e0;
  border-radius: 10px;
  color: var(--ww-navy-950);
  background: #fbfdff;
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
  transition: border-color var(--ww-duration-short) var(--ww-ease-standard), box-shadow var(--ww-duration-short) var(--ww-ease-standard), background var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-contact-form-shell textarea.wpcf7-form-control { min-height: 180px; resize: vertical; }
.ww-contact-form-shell .wpcf7-form-control:not(.wpcf7-submit):hover { border-color: #9eafc3; }
.ww-contact-form-shell .wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: var(--ww-navy-700);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(19, 35, 69, .12);
}
.ww-contact-form-shell .wpcf7-submit {
  min-width: 180px;
  min-height: 52px;
  padding: 13px 28px;
  border: 0;
  border-radius: 999px;
  color: var(--ww-navy-950);
  background: var(--ww-gold-100);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--ww-duration-short) var(--ww-ease-standard), background var(--ww-duration-short) var(--ww-ease-standard), box-shadow var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-contact-form-shell .wpcf7-submit:hover { background: #ffe08d; box-shadow: 0 8px 18px rgba(11, 23, 51, .12); transform: translateY(-2px); }
.ww-contact-form-shell .wpcf7-submit:focus-visible { outline: 3px solid rgba(255, 212, 101, .45); outline-offset: 3px; }
.ww-contact-form-shell .wpcf7-spinner { vertical-align: middle; }
.ww-contact-form-shell .wpcf7-response-output { margin: 24px 0 0 !important; padding: 14px 16px !important; border-radius: 10px; }
.ww-contact-form-shell .ww-contact-consent { margin: 2px 0 28px; }
.ww-contact-form-shell .ww-contact-consent .wpcf7-form-control-wrap { margin-top: 0; }
.ww-contact-form-shell .ww-contact-consent .wpcf7-acceptance {
  display: block;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.ww-contact-form-shell .ww-contact-consent .wpcf7-list-item { display: block; margin: 0; }
.ww-contact-form-shell .ww-contact-consent label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ww-text-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  cursor: pointer;
}
.ww-contact-form-shell .ww-contact-consent input[type="checkbox"] {
  box-sizing: border-box;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--ww-gold-600);
}
.ww-contact-form-shell .ww-contact-consent a {
  color: var(--ww-navy-950);
  text-decoration-color: var(--ww-gold-600);
  text-underline-offset: 4px;
}
.ww-contact-form-shell .ww-contact-consent a:hover { color: var(--ww-gold-600); }
.ww-contact-form-shell .ww-contact-consent input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(182, 139, 60, .24);
  outline-offset: 3px;
}

.ww-coming-soon-page { margin-block: 0 !important; }
.ww-coming-soon-hero {
  position: relative;
  display: grid;
  min-height: clamp(600px, 76svh, 820px);
  padding: 0;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ww-navy-950);
}
.ww-coming-soon-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 39, .64), rgba(7, 21, 48, .86)),
    linear-gradient(90deg, rgba(7, 21, 48, .42), rgba(7, 21, 48, .08));
  content: "";
}
.ww-coming-soon-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(.86);
  transform: scale(1.015);
}
.ww-coming-soon-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1040px);
  margin: 0 auto;
  padding: clamp(96px, 12vw, 156px) 0;
  color: #fff;
  text-align: center;
}
.ww-coming-soon-content .ww-page-kicker { margin-bottom: 24px; color: var(--ww-gold-100); }
.ww-coming-soon-title {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 9.4vw, 126px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: .065em;
  text-transform: uppercase;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .24);
}
.ww-coming-soon-subtitle {
  margin: clamp(30px, 4vw, 44px) 0 0;
  color: #fff;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.6;
}
.ww-coming-soon-copy {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.9;
}
.ww-coming-soon-content .ww-hero-button { min-width: 240px; min-height: 60px; max-width: 100%; box-sizing: border-box; font-size: 18px; }
.ww-coming-soon-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 16px;
  padding: 0 4px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  gap: 8px;
  transition: transform var(--ww-duration-short) var(--ww-ease-standard), background-color var(--ww-duration-short) var(--ww-ease-standard), border-color var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-coming-soon-link { position: relative; padding-left: 24px; }
.ww-coming-soon-link::before { position: absolute; left: 4px; content: "←"; text-decoration: none; }
.ww-coming-soon-link:hover,
.ww-coming-soon-link:focus-visible { background: transparent; text-decoration: underline; text-underline-offset: 4px; }

.ww-course-hero {
  position: relative;
  min-height: clamp(500px, 67vw, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ww-navy-950);
}
.ww-course-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 43, .12) 26%, rgba(7, 19, 43, .88) 100%);
  content: "";
}
.ww-course-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ww-course-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - clamp(40px, 8vw, 128px), 1280px);
  margin-right: auto;
  margin-left: auto;
  padding-bottom: clamp(54px, 7vw, 88px);
}
.ww-course-back { display: inline-flex; margin-bottom: 34px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-decoration: none; }
.ww-course-back:hover,
.ww-course-back:focus-visible { color: var(--ww-gold-100); }
.ww-course-title { max-width: 900px; margin: 0; font-size: clamp(48px, 8vw, 92px); font-weight: 500; line-height: 1.08; letter-spacing: -.045em; }
.ww-course-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}
.ww-course-meta > div { padding: 18px 22px; background: rgba(7,19,43,.55); }
.ww-course-meta dt { margin-bottom: 6px; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.ww-course-meta dd { margin: 0; color: #fff; font-size: 16px; font-weight: 700; }
.ww-course-intro { display: grid; grid-template-columns: minmax(180px, .32fr) minmax(0, .68fr); gap: clamp(42px, 8vw, 110px); align-items: start; }
.ww-course-intro h2 { margin: 0; color: var(--ww-navy-950); font-size: clamp(31px, 4vw, 50px); font-weight: 500; line-height: 1.35; letter-spacing: -.035em; }
.ww-course-intro-copy { max-width: 760px; }
.ww-course-intro-copy p { margin: 0 0 18px; color: var(--ww-text-muted); font-size: clamp(16px, 1.6vw, 19px); line-height: 2; }
.ww-course-intro-copy p:last-child { margin-bottom: 0; }
.ww-course-info-section { background: var(--ww-navy-50); }
.ww-course-info-layout { display: grid; grid-template-columns: minmax(220px, .34fr) minmax(0, .66fr); gap: clamp(42px, 8vw, 110px); }
.ww-course-info-list { margin: 0; border-top: 1px solid var(--ww-line); }
.ww-course-info-list > div { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 28px; padding: 22px 0; border-bottom: 1px solid var(--ww-line); }
.ww-course-info-list dt { color: var(--ww-navy-950); font-weight: 700; }
.ww-course-info-list dd { margin: 0; color: var(--ww-text-muted); line-height: 1.8; }
.ww-course-inclusions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(54px, 7vw, 88px);
  overflow: hidden;
  border: 1px solid rgba(11,23,51,.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,23,51,.06);
}
.ww-course-inclusion-card {
  position: relative;
  min-height: 100%;
  box-sizing: border-box;
  padding: clamp(34px, 4vw, 48px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.ww-course-inclusion-card:first-child {
  color: #fff;
  background: #132345;
}
.ww-course-inclusion-card h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--ww-navy-950);
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.5;
}
.ww-course-inclusion-card h3::before {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ww-navy-950);
  background: var(--ww-gold-100);
  content: "✓";
  font-size: 15px;
  font-weight: 800;
}
.ww-course-inclusion-card:first-child h3 { color: #fff; }
.ww-course-inclusion-card:last-child h3::before { border: 1px solid rgba(11,23,51,.15); color: var(--ww-navy-950); background: #fff; content: "−"; }
.ww-course-inclusion-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.ww-course-inclusion-card li { position: relative; padding-left: 26px; color: var(--ww-text-muted); line-height: 1.75; }
.ww-course-inclusion-card:first-child li { color: rgba(255,255,255,.78); }
.ww-course-inclusion-card li::before { position: absolute; top: .02em; left: 0; color: var(--ww-gold-600); content: "−"; font-weight: 700; }
.ww-course-inclusion-card:first-child li::before { color: var(--ww-gold-100); content: "✓"; }
.ww-course-itinerary { display: grid; grid-template-columns: minmax(190px, .34fr) minmax(0, .66fr); gap: clamp(42px, 8vw, 110px); }
.ww-course-days { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ww-line); }
.ww-model-notice { max-width: 38em; margin: 20px 0 0; color: var(--ww-text-muted); font-size: 14px; line-height: 1.9; }
.ww-course-days > li { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 22px; align-items: start; padding: 23px 0; border-bottom: 1px solid var(--ww-line); }
.ww-course-day-number { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--ww-navy-950); background: var(--ww-gold-100); font-size: 13px; font-weight: 700; }
.ww-course-days > li > p { margin: 8px 0 0; color: var(--ww-navy-950); font-size: 17px; line-height: 1.65; }
.ww-tour-day-copy h3 { margin: 6px 0 14px; color: var(--ww-navy-950); font-size: 18px; font-weight: 700; line-height: 1.6; }
.ww-tour-day-copy ul { display: grid; gap: 8px; margin: 0; padding: 0; color: var(--ww-text-muted); list-style: none; }
.ww-tour-day-copy li { position: relative; padding-left: 18px; line-height: 1.75; }
.ww-tour-day-copy li::before { position: absolute; top: .75em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--ww-gold-100); content: ""; }
.ww-course-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 2vw, 24px); }
.ww-course-gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 18px; background: var(--ww-navy-100); }
.ww-course-gallery figure::after { position: absolute; right: 16px; bottom: 16px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; background: rgba(8,20,46,.68); content: "+"; font-size: 22px; line-height: 1; opacity: 0; pointer-events: none; transition: opacity var(--ww-duration-short) var(--ww-ease-standard), transform var(--ww-duration-short) var(--ww-ease-standard); }
.ww-course-gallery img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; cursor: zoom-in; transition: transform 600ms var(--ww-ease-standard); }
.ww-course-gallery figure:hover img { transform: scale(1.035); }
.ww-course-gallery figure:hover::after,
.ww-course-gallery figure:focus-within::after { opacity: 1; transform: translateY(-2px); }
.ww-lightbox[hidden] { display: none; }
.ww-lightbox {
  position: fixed;
  z-index: 1000001;
  inset: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  padding: clamp(20px, 4vw, 54px);
  color: #fff;
  background: rgba(5,14,33,.94);
  backdrop-filter: blur(8px);
}
.ww-lightbox-stage { display: grid; min-width: 0; justify-items: center; gap: 16px; }
.ww-lightbox-image { display: block; max-width: 100%; max-height: calc(100vh - 150px); border-radius: 12px; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.ww-lightbox-caption { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; text-align: center; }
.ww-lightbox-button { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(255,255,255,.07); font: inherit; font-size: 22px; cursor: pointer; transition: border-color var(--ww-duration-short) var(--ww-ease-standard), background var(--ww-duration-short) var(--ww-ease-standard); }
.ww-lightbox-button:hover,
.ww-lightbox-button:focus-visible { border-color: var(--ww-gold-100); background: rgba(255,212,101,.14); }
.ww-lightbox-close { position: absolute; top: 22px; right: 22px; }
.ww-lightbox-next { justify-self: end; }
body.ww-lightbox-open { overflow: hidden; }
.ww-course-cta { padding: clamp(58px, 8vw, 96px) 0; color: #fff; background: #132345; }
.ww-course-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.ww-course-cta h2 { margin: 0; color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 500; letter-spacing: -.035em; }
.ww-course-cta p { margin: 12px 0 0; color: rgba(255,255,255,.72); line-height: 1.8; }
.ww-course-cta .ww-hero-button { box-sizing: border-box; flex: 0 0 auto; }

.ww-archive-page { background: #e6eef6; }
.ww-archive-nav {
  padding: 18px 0 20px;
  color: #fff;
  background: var(--ww-navy-950);
}
.ww-archive-nav-inner {
  display: flex;
  width: min(100% - clamp(40px, 8vw, 128px), 1280px);
  min-height: 58px;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.ww-archive-nav a {
  display: inline-flex;
  min-width: 132px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  transition: color var(--ww-duration-short) var(--ww-ease-standard), background-color var(--ww-duration-short) var(--ww-ease-standard), box-shadow var(--ww-duration-short) var(--ww-ease-standard), transform var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-archive-nav a:hover,
.ww-archive-nav a:focus-visible { color: #fff; background: rgba(255,255,255,.1); }
.ww-archive-nav a:active { transform: scale(.98); }
.ww-archive-page:not(:has(#overseas:target)) .ww-archive-nav a[href="#domestic"],
.ww-archive-page:has(#domestic:target) .ww-archive-nav a[href="#domestic"],
.ww-archive-page:has(#overseas:target) .ww-archive-nav a[href="#overseas"] {
  color: var(--ww-navy-950);
  background: var(--ww-gold-100);
  box-shadow: 0 5px 18px rgba(255,212,101,.18);
}
.ww-archive-section { scroll-margin-top: 110px; }
.ww-archive-section + .ww-archive-section { padding-top: clamp(48px, 6vw, 88px); }
.ww-archive-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(30px, 4vw, 44px);
  padding: clamp(34px, 4vw, 54px) clamp(30px, 5vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(11,23,51,.09);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
  box-shadow: 0 16px 46px rgba(11,23,51,.055);
}
.ww-archive-heading::before {
  position: absolute;
  top: 0;
  left: clamp(30px, 5vw, 68px);
  width: 72px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--ww-gold-100);
  content: "";
}
.ww-model-archive .ww-archive-heading::before,
.ww-tour-archive .ww-archive-heading::before { background: #b68b3c; }
.ww-model-archive .ww-archive-heading .ww-page-kicker,
.ww-tour-archive .ww-archive-heading .ww-page-kicker { color: #b68b3c; }
.ww-archive-heading h2 { margin: 6px 0 0; color: var(--ww-navy-950); font-size: clamp(42px, 5vw, 64px); font-weight: 500; letter-spacing: -.045em; }
.ww-archive-heading p { margin: 0; }
.ww-archive-heading > p {
  position: relative;
  padding-left: 34px;
  color: var(--ww-text-muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}
.ww-archive-heading > p::before {
  position: absolute;
  top: .78em;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--ww-gold-100);
  content: "";
}
.ww-archive-list { display: grid; gap: clamp(28px, 4vw, 44px); }
.ww-archive-entry {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(11,23,51,.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11,23,51,.06);
  transition: transform var(--ww-duration-medium) var(--ww-ease-standard), box-shadow var(--ww-duration-medium) var(--ww-ease-standard);
}
.ww-archive-entry:nth-child(even) { grid-template-columns: minmax(360px, 1.08fr) minmax(0, .92fr); }
.ww-archive-entry:nth-child(even) .ww-archive-image { order: 2; }
.ww-archive-entry:hover,
.ww-archive-entry:focus-within { transform: translateY(-3px); box-shadow: var(--ww-shadow-2); }
.ww-archive-image { display: block; min-height: 430px; overflow: hidden; background: var(--ww-navy-200); }
.ww-archive-image img { display: block; width: 100%; height: 100%; min-height: 430px; object-fit: cover; transition: transform 700ms var(--ww-ease-standard); }
.ww-archive-entry:hover .ww-archive-image img,
.ww-archive-entry:focus-within .ww-archive-image img { transform: scale(1.035); }
.ww-archive-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 62px); }
.ww-archive-copy .ww-page-index { margin: 0 0 18px; color: var(--ww-gold-600); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.ww-archive-copy h3 { margin: 0; color: var(--ww-navy-950); font-size: clamp(30px, 3.6vw, 46px); font-weight: 500; line-height: 1.3; letter-spacing: -.035em; }
.ww-archive-subtitle { margin: 15px 0 22px; color: #42506a; font-size: clamp(16px, 1.65vw, 20px); font-weight: 600; line-height: 1.7; }
.ww-archive-description { margin: 18px 0 0; color: var(--ww-text-muted); font-size: 15px; line-height: 1.9; }
.ww-archive-highlights { display: grid; gap: 8px; margin: 0; padding: 0; color: var(--ww-text-muted); list-style: none; }
.ww-archive-highlights li { position: relative; padding-left: 18px; line-height: 1.75; }
.ww-archive-highlights li::before { position: absolute; top: .72em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--ww-gold-100); content: ""; }
.ww-archive-link { display: inline-flex; min-height: 44px; align-items: center; gap: 14px; align-self: flex-start; margin-top: 28px; color: var(--ww-navy-950); font-size: 14px; font-weight: 700; text-decoration: none; }
.ww-archive-link span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--ww-gold-100); transition: transform var(--ww-duration-short) var(--ww-ease-standard), background-color var(--ww-duration-short) var(--ww-ease-standard); }
.ww-archive-link:hover span,
.ww-archive-link:focus-visible span { background: #ffca3a; transform: translateX(3px); }

.wp-site-blocks > footer { margin-block-start: 0 !important; }
.ww-footer {
  position: relative;
  margin-top: 0 !important;
  padding-top: clamp(68px, 7vw, 104px) !important;
  padding-bottom: 28px !important;
  background: #08142e !important;
}
.ww-footer-main {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(300px, 1.35fr) minmax(190px, .8fr) minmax(190px, .8fr);
  gap: clamp(30px, 4.2vw, 60px) !important;
  align-items: start !important;
  margin-bottom: 0 !important;
  padding-bottom: clamp(52px, 6vw, 76px);
}
.ww-footer-main > .wp-block-column { width: auto; padding: 0; flex-basis: auto !important; }
.ww-footer-wordmark { margin: 0; }
.ww-footer-wordmark a {
  color: #fff;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.2;
  text-decoration: none;
}
.ww-footer-tagline { margin: 14px 0 0; color: var(--ww-gold-100); font-size: 14px; letter-spacing: .08em; }
.ww-footer-company { margin: clamp(30px, 4vw, 50px) 0 0; color: rgba(255, 255, 255, .68); line-height: 1.9; }
.ww-footer h3.ww-footer-heading {
  margin: 0 0 28px;
  color: #fff;
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
}
.ww-footer-top-button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  transition: color var(--ww-duration-short) var(--ww-ease-standard),
    background-color var(--ww-duration-short) var(--ww-ease-standard),
    transform var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-footer-top-button:hover,
.ww-footer-top-button:focus-visible { color: var(--ww-navy-950); background: var(--ww-gold-100); transform: translateY(-3px); }
.ww-language-switcher { display: flex; align-items: center; gap: 12px; margin: 0; }
.ww-language-label { display: block; margin: 0; color: rgba(255, 255, 255, .68); font-size: 12px; font-weight: 500; white-space: nowrap; }
.ww-language-select-wrap { position: relative; width: 124px; }
.ww-language-select-wrap::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--ww-gold-100);
  border-bottom: 2px solid var(--ww-gold-100);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}
.ww-language-select-wrap select {
  width: 100%;
  min-height: 38px;
  padding: 0 42px 0 14px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: border-color var(--ww-duration-short) var(--ww-ease-standard), background var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-language-select-wrap select:hover { border-color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .1); }
.ww-language-select-wrap select:focus-visible { border-color: var(--ww-gold-100); }
.ww-language-select-wrap option { color: var(--ww-navy-950); background: #fff; }
.ww-footer-links { margin: 0; padding: 0; list-style: none; }
.ww-footer-links li { margin: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.ww-footer-links li:last-child { border-bottom: 0; }
.ww-footer-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color var(--ww-duration-short) var(--ww-ease-standard), padding-left var(--ww-duration-short) var(--ww-ease-standard);
}
.ww-footer-links a::after { color: var(--ww-gold-100); content: "↗"; font-size: 12px; opacity: .78; transition: transform var(--ww-duration-short) var(--ww-ease-standard); }
.ww-footer-links a:hover,
.ww-footer-links a:focus-visible { padding-left: 6px; color: var(--ww-gold-100); }
.ww-footer-links a:hover::after,
.ww-footer-links a:focus-visible::after { transform: translate(2px, -2px); }
.ww-footer-bottom {
  display: grid !important;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 28px;
  align-items: center !important;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.ww-footer-copyright { margin: 0; justify-self: end; color: rgba(255, 255, 255, .5) !important; text-align: right; }
.ww-footer a { color: inherit; transition: color var(--ww-duration-short) var(--ww-ease-standard); }
.ww-footer a:hover,
.ww-footer a:focus-visible { color: var(--ww-gold-100); }

html.ww-motion-ready .ww-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms var(--ww-ease-standard) var(--ww-reveal-delay, 0ms), transform 620ms var(--ww-ease-standard) var(--ww-reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.ww-motion-ready .ww-reveal.is-visible { opacity: 1; transform: translateY(0); will-change: auto; }
html.ww-motion-ready .ww-hero-reveal { opacity: 0; animation: ww-hero-copy-in 720ms var(--ww-ease-standard) var(--ww-hero-delay, 0ms) both; }

@keyframes ww-hero-copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ww-menu-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ww-menu-content-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ww-menu-item-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
  .ww-header { backdrop-filter: none; }
  .ww-header .wp-block-navigation__responsive-container:not(.is-menu-open) { display: none; }
  .ww-header .wp-block-navigation__responsive-container-open {
    display: flex;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin: -10px -10px -10px 0;
    border-radius: 50%;
    transition: background-color var(--ww-duration-short) var(--ww-ease-standard), transform var(--ww-duration-short) var(--ww-ease-standard);
  }
  .ww-header .wp-block-navigation__responsive-container-open:hover,
  .ww-header .wp-block-navigation__responsive-container-open:focus-visible { background: var(--ww-navy-100); }
  .ww-header .wp-block-navigation__responsive-container-open:active { transform: scale(.92); }
  .ww-header .wp-block-navigation__responsive-container-open svg { transition: transform var(--ww-duration-short) var(--ww-ease-standard); }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open {
    position: fixed;
    z-index: 100000;
    inset: 0;
    display: flex;
    box-sizing: border-box;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    padding: 88px 24px 32px;
    overflow-y: auto;
    color: var(--ww-navy-950);
    background: #fff !important;
    animation: ww-menu-backdrop-in 240ms var(--ww-ease-standard) both;
  }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
  }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    box-sizing: border-box;
    width: 100%;
    align-items: stretch;
    padding: 0;
    animation: ww-menu-content-in 320ms var(--ww-ease-standard) 50ms both;
  }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    box-sizing: border-box;
    width: 100%;
    align-items: stretch;
    gap: 0;
  }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    box-sizing: border-box;
    width: 100%;
    align-items: stretch !important;
    border-bottom: 1px solid var(--ww-line);
    animation: ww-menu-item-in 280ms var(--ww-ease-standard) both;
  }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(1) { animation-delay: 80ms; }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(2) { animation-delay: 110ms; }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(3) { animation-delay: 140ms; }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(4) { animation-delay: 170ms; }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:nth-child(5) { animation-delay: 200ms; }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    min-height: 64px;
    align-items: center;
    padding: 10px 2px;
    color: var(--ww-navy-950);
    font-size: 20px;
    font-weight: 600;
  }
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::after { display: none; }
  .ww-header .wp-block-navigation__responsive-container-close {
    position: fixed;
    top: var(--ww-mobile-menu-close-top, 14px);
    right: var(--ww-mobile-menu-close-right, 10px);
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--ww-navy-950);
    border-radius: 50%;
    transition: color var(--ww-duration-short) var(--ww-ease-standard), background-color var(--ww-duration-short) var(--ww-ease-standard), transform var(--ww-duration-short) var(--ww-ease-standard);
  }
  .ww-header .wp-block-navigation__responsive-container-close:hover,
  .ww-header .wp-block-navigation__responsive-container-close:focus-visible { color: var(--ww-navy-700); background: var(--ww-navy-100); }
  .ww-header .wp-block-navigation__responsive-container-close:active { transform: scale(.92) rotate(8deg); }
  .ww-news-grid,
  .ww-about-grid,
  .ww-faq-grid { flex-direction: column; }
  .ww-news-grid > .wp-block-column,
  .ww-about-grid > .wp-block-column,
  .ww-faq-grid > .wp-block-column { width: 100%; flex-basis: 100% !important; }
  .ww-hero-slider::after { background: linear-gradient(90deg, rgba(5, 15, 36, .25), rgba(8, 23, 49, .139)); }
  .ww-news-grid > .wp-block-column:first-child { padding-top: 0; }
  .ww-footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 36px !important; }
  .ww-footer-bottom { grid-template-columns: 1fr auto; }
  .ww-footer-copyright { grid-column: 2; grid-row: 1; }
  .ww-footer-bottom .ww-footer-top-button { grid-column: 2; grid-row: 2; }
  .ww-model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ww-company-layout,
  .ww-company-detail-grid,
  .ww-contact-layout,
  .ww-course-intro,
  .ww-course-info-layout,
  .ww-course-itinerary { grid-template-columns: 1fr; }
  .ww-course-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ww-archive-entry,
  .ww-archive-entry:nth-child(even) { grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); }
}

@media (max-width: 600px) {
  .ww-top-notice {
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 9px 18px;
  }
  .ww-top-notice::before { margin-top: .55em; margin-right: 9px; }
  .ww-top-notice p { font-size: 11px; text-align: left; }
  .ww-contact-form-section { padding: 64px 20px; }
  .ww-contact-form-shell { width: 100%; padding: 30px 24px 32px; border-radius: 18px; }
  .ww-contact-form-shell h2 { margin-bottom: 32px; font-size: 28px; line-height: 1.4; }
  .ww-contact-form-shell .wpcf7-form > p { width: 100%; margin-bottom: 20px; }
  .ww-contact-form-shell .wpcf7-form-control:not(.wpcf7-submit) { width: 100%; min-height: 50px; }
  .ww-contact-form-shell textarea.wpcf7-form-control { min-height: 156px; }
  .ww-contact-form-shell .wpcf7-submit { width: 100%; }
  .ww-news-grid { padding: 28px 20px; border-radius: 18px; }
  .ww-news-list li {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 20px 6px;
  }
}

@media (max-width: 781px) {
  .ww-home .ww-hero-slider { width: calc(100% - 40px); margin: 0 20px 20px !important; border-radius: 20px; }
  .ww-home .ww-slider-overlay { width: calc(100% - 40px); }
  .ww-home .ww-slider-controls { left: 20px; right: 20px; }
  .admin-bar .ww-header { top: 46px; }
  .ww-hero-slider,
  .ww-slider-overlay { min-height: max(0px, calc(100svh - var(--ww-hero-top, 110px) - 20px)); }
  .ww-home .ww-slider-overlay { justify-content: center; padding-top: 84px; padding-bottom: 84px; }
  .ww-home .ww-slider-overlay > .ww-eyebrow { margin: 0 0 10px; }
  .ww-home .ww-hero-lead { margin-top: 16px; }
  .ww-home .ww-hero-actions { margin-top: 28px; }
  .ww-home .ww-slide:first-child img { object-position: left center; }
  .ww-home .ww-slide:nth-child(2) img { height: 115%; object-position: center top; }
  .ww-coming-soon-hero { min-height: 640px; }
  .ww-coming-soon-content { width: min(calc(100% - 40px), 620px); padding: 94px 0 108px; }
  .ww-coming-soon-content .ww-hero-button { width: 100%; min-width: 0; min-height: 52px; font-size: 16px; }
  .ww-coming-soon-title { font-size: clamp(44px, 15vw, 68px); line-height: 1.04; letter-spacing: .035em; }
  .ww-coming-soon-subtitle { margin-top: 28px; font-size: 20px; }
  .ww-hero-title { max-width: 100%; font-size: clamp(26px, calc(11.5vw - 9.2px), 44px); line-height: 1.24; }
  .ww-section-title { font-size: clamp(28px, 8vw, 40px) !important; }
  .ww-choice-grid,
  .ww-point-grid,
  .ww-service-list,
  .ww-strength-grid,
  .ww-tour-grid { gap: 18px; }
  .ww-hero-actions { width: 100%; }
  .ww-hero-button { flex: 1 1 180px; }
  .ww-slider-controls { bottom: 24px; }
  .ww-footer-main { grid-template-columns: 1fr; gap: 42px !important; }
  .ww-footer-bottom { grid-template-columns: 1fr; gap: 20px; align-items: flex-start !important; }
  .ww-footer-copyright { grid-column: 1; grid-row: 3; }
  .ww-footer-bottom .ww-footer-top-button { grid-column: 1; grid-row: 2; justify-self: end; }
  .ww-page-card-grid-two,
  .ww-model-grid { grid-template-columns: 1fr; }
  .ww-company-layout,
  .ww-course-intro,
  .ww-course-info-layout,
  .ww-course-itinerary { gap: 34px; }
  .ww-company-layout > .ww-page-section-heading,
  .ww-course-info-layout > div > .ww-page-section-heading,
  .ww-course-itinerary > div > .ww-page-section-heading { margin-bottom: 0; }
  .ww-page-section-heading-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .ww-profile-list > div,
  .ww-compact-list > div { grid-template-columns: 1fr; gap: 8px; }
  .ww-page-card-body { padding: 26px 22px 30px; }
  .ww-contact-map,
  .ww-contact-map iframe { min-height: 360px; }
  .ww-course-hero { min-height: 610px; }
  .ww-course-hero-content { width: min(100% - 40px, 1280px); padding-bottom: 40px; }
  .ww-course-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ww-course-meta > div { padding: 15px 16px; }
  .ww-course-inclusions,
  .ww-course-gallery { grid-template-columns: 1fr; }
  .ww-lightbox { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 6px; padding: 66px 10px 18px; }
  .ww-lightbox-image { max-height: calc(100vh - 126px); border-radius: 8px; }
  .ww-lightbox-button { width: 40px; height: 40px; font-size: 19px; }
  .ww-lightbox-close { top: 14px; right: 14px; }
  .ww-course-info-list > div { grid-template-columns: 1fr; gap: 8px; }
  .ww-course-cta-inner { align-items: flex-start; flex-direction: column; }
  .ww-course-cta .ww-hero-button { width: 100%; justify-content: center; }
  .ww-archive-nav { padding: 14px 0 16px; }
  .ww-archive-nav-inner { width: calc(100% - 32px); min-height: 54px; }
  .ww-archive-nav a { min-width: 0; min-height: 42px; flex: 1 1 50%; padding: 0 18px; }
  .ww-archive-heading { grid-template-columns: 1fr; gap: 18px; align-items: start; padding: 34px 24px 30px; border-radius: 18px; }
  .ww-archive-heading::before { left: 24px; width: 58px; }
  .ww-archive-heading h2 { font-size: 42px; }
  .ww-archive-heading > p { padding-left: 28px; text-align: left; }
  .ww-archive-heading > p::before { width: 16px; }
  .ww-archive-entry,
  .ww-archive-entry:nth-child(even) { grid-template-columns: 1fr; }
  .ww-archive-entry:nth-child(even) .ww-archive-image { order: 0; }
  .ww-archive-image,
  .ww-archive-image img { min-height: 280px; }
  .ww-archive-copy { padding: 32px 24px 38px; }
  .ww-philosophy-item { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .ww-tour-editorial-item,
  .ww-tour-editorial-item:nth-child(even) { grid-template-columns: 1fr; }
  .ww-tour-editorial-item:nth-child(even) .ww-tour-editorial-image { order: 0; }
  .ww-tour-editorial-image,
  .ww-tour-editorial-image img { min-height: 280px; }
  .ww-tour-editorial-copy { padding: 32px 24px 38px; }
}

.ww-policy-documents-section {
  background: var(--ww-navy-100);
}

.ww-policy-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.ww-policy-heading .ww-page-kicker {
  color: #b68b3c;
}

.ww-policy-heading h2 {
  margin: 12px 0 0;
  color: var(--ww-navy-950);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.2;
}

.ww-policy-heading-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ww-text-muted);
  font-size: 16px;
  line-height: 1.9;
}

.ww-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ww-policy-card {
  position: relative;
  display: grid;
  min-height: 230px;
  padding: 34px 36px 32px;
  overflow: hidden;
  color: var(--ww-navy-950);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(11, 23, 51, .08);
  border-radius: var(--ww-radius);
  box-shadow: var(--ww-shadow-1);
  transition: transform var(--ww-duration-medium) var(--ww-ease-standard), box-shadow var(--ww-duration-medium) var(--ww-ease-standard), border-color var(--ww-duration-medium) var(--ww-ease-standard);
}

.ww-policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 36px;
  width: 72px;
  height: 4px;
  background: var(--ww-gold-600);
  border-radius: 0 0 4px 4px;
  transition: width var(--ww-duration-medium) var(--ww-ease-standard);
}

.ww-policy-card:hover,
.ww-policy-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(182, 139, 60, .4);
  box-shadow: var(--ww-shadow-2);
}

.ww-policy-card:hover::before,
.ww-policy-card:focus-visible::before {
  width: calc(100% - 72px);
}

.ww-policy-card-type {
  align-self: start;
  color: var(--ww-gold-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.ww-policy-card h3 {
  align-self: center;
  margin: 24px 0;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.5;
}

.ww-policy-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  padding-top: 18px;
  color: var(--ww-text-muted);
  border-top: 1px solid var(--ww-line);
  font-size: 14px;
  font-weight: 600;
}

.ww-policy-card-action span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ww-navy-950);
  background: var(--ww-navy-100);
  border-radius: 50%;
}

.ww-policy-card-wide {
  grid-column: 1 / -1;
}

.ww-policy-note {
  margin: 24px 0 0;
  color: var(--ww-text-muted);
  font-size: 13px;
}

@media (max-width: 781px) {
  .ww-policy-heading { margin-bottom: 30px; }
  .ww-policy-grid { grid-template-columns: 1fr; }
  .ww-policy-card,
  .ww-policy-card-wide { grid-column: auto; min-height: 200px; padding: 30px 24px 26px; }
  .ww-policy-card::before { left: 24px; }
  .ww-policy-card:hover::before,
  .ww-policy-card:focus-visible::before { width: calc(100% - 48px); }
}

@media (prefers-reduced-motion: reduce) {
  .ww-header .wp-block-navigation__responsive-container.is-menu-open,
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,
  .ww-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .ww-slide img,
  .ww-slide.is-active img { transform: none; }
}
