@charset "utf-8";

:root {
  --ink: #192631;
  --navy: #15364c;
  --navy-deep: #0b2739;
  --red: #d94b45;
  --red-dark: #b63834;
  --gold: #bd8a48;
  --cream: #f7f3ec;
  --paper: #fcfcfa;
  --mist: #edf5f7;
  --muted: #66747d;
  --line: #dbe3e6;
  --sky: #e7f3f6;
  --coral-soft: #faece9;
  --shadow: 0 20px 55px rgba(16, 44, 62, .10);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Segoe UI", Arial, sans-serif;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
main { overflow: hidden; }
.skip { position: fixed; left: -9999px; top: 10px; z-index: 100; }
.skip:focus { left: 10px; padding: 10px 14px; background: #fff; border: 2px solid var(--navy); }

header {
  min-height: 86px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 26px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.site-logo {
  width: 178px;
  margin-right: auto;
  text-decoration: none;
}
.site-logo img { width: auto; max-width: 174px; max-height: 46px; height: auto; }
.site-logo small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}
header nav { display: flex; align-items: center; gap: 20px; }
header nav a {
  position: relative;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -12px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
header nav a:hover::after { right: 0; }
.menu-button { display: none; }
.languages { position: relative; font-size: 12px; }
.languages summary {
  min-height: 44px;
  padding: 0 0 0 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-left: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}
.languages summary::-webkit-details-marker { display: none; }
.language-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  position: relative;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  color: var(--navy);
}
.language-icon::before {
  content: "";
  position: absolute;
  inset: -1.5px 3.5px;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 50%;
}
.language-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 5.2px;
  border-top: 1px solid currentColor;
}
.language-current { overflow: hidden; text-overflow: ellipsis; }
.language-caret { margin-top: -3px; color: var(--muted); font-size: 13px; line-height: 1; }
.languages div {
  position: absolute;
  top: 34px;
  right: 0;
  min-width: 180px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.languages a { display: block; padding: 8px 10px; text-decoration: none; }
.languages a:hover { background: var(--mist); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 24px 62px;
  display: grid;
  grid-template-columns: 1fr .94fr;
  align-items: center;
  gap: 64px;
}
.home-hero {
  max-width: 1260px;
  margin: 36px auto 0;
  padding: 64px 42px 68px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(130deg, #f8f5ef 0%, #eef6f7 58%, #f9efed 100%);
  border: 1px solid #e1e7e8;
  border-radius: 30px;
}
.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}
.home-hero::before { width: 280px; height: 280px; left: -165px; bottom: -170px; background: rgba(213, 235, 239, .74); }
.home-hero::after { width: 220px; height: 220px; right: -145px; top: -120px; background: rgba(246, 221, 216, .72); }
.home-hero > * { position: relative; z-index: 1; }
.article-hero { padding-top: 58px; }
.hero-copy h1 {
  margin: 16px 0 24px;
  color: var(--navy);
  font-family: "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Segoe UI", Arial, sans-serif;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: 1.16;
}
.article-hero .hero-copy h1 { font-size: clamp(38px, 4.6vw, 60px); }
.lead {
  max-width: 690px;
  margin: 0;
  color: #4f606d;
  font-size: 17px;
  line-height: 1.95;
}
.eyebrow {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-saving {
  margin: 27px 0 25px;
  padding: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid #efd8dc;
  border-top: 5px solid var(--red);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(79, 67, 72, .11);
}
.hero-saving__intro > span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}
.hero-saving__intro strong {
  display: block;
  color: var(--navy);
  font: 750 24px/1.4 "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Segoe UI", sans-serif;
}
.hero-saving__intro p {
  margin: 7px 0 17px;
  color: #455661;
  font-size: 12px;
  line-height: 1.7;
}
.hero-saving__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(205px, .78fr);
  gap: 10px;
}
.preorder-card {
  padding: 17px;
  display: flex;
  flex-direction: column;
  background: #eef5f6;
  border: 1px solid #d6e4e7;
  border-radius: 14px;
}
.preorder-card > span {
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .09em;
}
.hero-saving__grid h2 { margin: 7px 0 5px; color: var(--navy); font-size: 18px; }
.hero-saving__grid p { min-height: 59px; margin: 0 0 13px; color: #4f606d; font-size: 11px; line-height: 1.65; }
.hero-saving__grid .btn { width: 100%; min-height: 48px; margin-top: auto; padding: 11px 13px; font-size: 11px; }
.coupon-banner {
  position: relative;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  align-items: stretch;
  gap: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #a91f20 0%, #d43a34 58%, #b52123 100%);
  border: 1px solid #94191b;
  border-radius: 16px;
  box-shadow: 0 14px 27px rgba(156, 29, 28, .25);
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.coupon-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.14), transparent 38%);
  pointer-events: none;
}
.coupon-banner:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(156, 29, 28, .31); }
.coupon-banner:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.coupon-banner__copy { position: relative; z-index: 1; min-width: 0; }
.coupon-banner__logo {
  width: min(100%, 155px);
  height: 38px;
  margin-bottom: 13px;
  padding: 5px 8px;
  display: block;
  background: #fff;
  object-fit: contain;
}
.coupon-banner__copy > span { display: block; color: #ffd8d1; font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.coupon-banner .coupon-banner__copy h2 { margin: 6px 0 5px; color: #fff; font-size: 21px; line-height: 1.38; }
.coupon-banner .coupon-banner__copy p { min-height: 0; margin: 0 0 13px; color: #fff5f2; }
.coupon-banner__copy strong {
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #aa2021;
  font-size: 10px;
  line-height: 1.35;
}
.coupon-banner__copy strong i { font-style: normal; font-size: 15px; }
.coupon-banner__value {
  position: relative;
  z-index: 1;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-left: 1px dashed rgba(255,255,255,.62);
  text-align: center;
}
.coupon-banner__value b { font: 700 62px/.78 Georgia, serif; letter-spacing: -.08em; }
.coupon-banner__value b small { font-size: .38em; letter-spacing: 0; }
.coupon-banner__value-label { margin-bottom: 13px; color: #ffd8d1; font-size: 7px; font-weight: 900; line-height: 1.45; letter-spacing: .06em; }
.coupon-banner__off { margin-top: 8px; font-size: 23px; font-weight: 900; line-height: 1; letter-spacing: .1em; }
.coupon-banner__value em { margin-top: 14px; color: #ffd8d1; font-size: 7px; font-style: normal; font-weight: 900; letter-spacing: .09em; }
.hero-saving > small { display: block; margin-top: 11px; color: var(--muted); font-size: 9px; line-height: 1.55; }
.hero-saving__haneda {
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.hero-saving__haneda:hover { color: var(--red); }
.hero-saving__haneda i { font-style: normal; }
.hero-actions--guides { margin-top: 23px; align-items: center; }
.hero-actions--guides .text-link { padding: 13px 5px; }
.hero-actions--guides .text-link i { margin-left: 10px; font-style: normal; }
.hero-photo { position: relative; margin: 0; min-height: 510px; }
.hero-photo::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 260px;
  left: -22px;
  top: 34px;
  z-index: -1;
  background: var(--gold);
}
.hero-photo img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border: 6px solid #fff;
  border-radius: 24px;
  box-shadow: 0 28px 65px rgba(11,31,47,.16);
}
.home-hero .hero-photo::before { left: -18px; top: 58px; width: 54px; height: 220px; background: var(--red); border-radius: 999px; opacity: .92; }
.hero-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 7px 9px;
  background: rgba(8, 27, 43, .86);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}
.partner-logo {
  width: auto;
  max-width: 330px;
  height: 78px;
  margin-bottom: 25px;
  object-fit: contain;
  object-position: left center;
}
.partner-logo--jdf { height: 62px; }
.article-hero .partner-logo { max-width: 270px; height: 56px; margin-bottom: 28px; }
.article-hero .partner-logo--jdf { height: 48px; }
.brand-stage {
  min-height: 440px;
  padding: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  border: 1px solid #e7dfd0;
  box-shadow: var(--shadow);
}
.brand-stage .partner-logo { width: 100%; max-width: 430px; height: auto; }
.brand-stage span { margin-top: 42px; color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 30px; color: var(--muted); font-size: 11px; }
.breadcrumb a { text-decoration: none; }

.btn {
  min-height: 53px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
  cursor: pointer;
}
.btn i { font-style: normal; font-size: 17px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 12px 28px rgba(200, 52, 46, .24); }
.btn--primary:hover { background: var(--red-dark); }
.btn--outline { border-color: var(--navy); background: transparent; color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--dark { border: 0; background: var(--navy); color: #fff; }
.btn--light { border: 1px solid #fff; background: #fff; color: var(--navy); }
.text-link { color: var(--navy); font-size: 12px; font-weight: 900; text-decoration: none; }
.text-button { padding: 10px 0; border: 0; background: transparent; color: var(--navy); font-weight: 800; text-decoration: underline; cursor: pointer; }

.intro-band {
  margin: 30px 0 0;
  padding: 42px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--sky);
  border-top: 1px solid #d5e4e7;
  border-bottom: 1px solid #d5e4e7;
  color: var(--navy);
}
.intro-band p { max-width: 1040px; margin: 0; color: #344f60; font-size: 18px; line-height: 2; }

.live-info {
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 6px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  background: #f3f6f6;
  border-bottom: 1px solid #dfe6e8;
  color: #52656f;
}
.live-info__head { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.live-info__head span { color: var(--red); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.live-info__head h2 { display: none; }
.live-info__head time { color: #819099; font-size: 8px; font-weight: 700; }
.live-info__grid { display: flex; align-items: center; gap: 24px; }
.live-info article { min-width: 0; display: flex; align-items: center; gap: 11px; }
.live-card__title { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.live-card__title span { display: none; }
.live-card__title b { color: #70808a; font-size: 8px; }
.weather-places { display: flex; align-items: center; gap: 14px; }
.weather-places > div { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.weather-icon { width: 20px; height: 20px; flex: 0 0 20px; display: grid; place-items: center; font-size: 13px; }
.weather-places b { display: inline; margin-right: 3px; color: #71828b; font-size: 7px; letter-spacing: .08em; }
.weather-places strong { display: inline; color: var(--navy); font-size: 10px; line-height: 1.2; }
.weather-places small { display: none; }
.live-rates dl { margin: 0; display: flex; align-items: center; gap: 12px; }
.live-rates dl > div { display: flex; align-items: baseline; gap: 4px; white-space: nowrap; }
.live-rates dt { color: #71828b; font-size: 7px; font-weight: 900; }
.live-rates dd { margin: 0; color: var(--navy); font-size: 10px; font-weight: 900; }
.live-rates p { display: none; }
.live-info > footer { padding: 0; display: flex; align-items: center; gap: 10px; background: transparent; color: #89969d; font-size: 6px; white-space: nowrap; }
.live-info > footer span:first-child { color: #71828b; }
.live-info > footer a { display: inline; padding: 0; color: var(--navy); font-size: inherit; font-weight: 800; text-decoration: none; }
.converter-open {
  min-height: 28px;
  padding: 4px 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #cbd9dd;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.converter-open i { color: var(--red); font-style: normal; }
.converter-open:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.converter-open:disabled { opacity: .45; cursor: wait; }
.currency-converter {
  width: min(92vw, 600px);
  max-height: min(88vh, 720px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(11, 39, 57, .28);
}
.currency-converter::backdrop {
  background: rgba(11, 39, 57, .48);
  backdrop-filter: blur(4px);
}
.currency-converter[open] { animation: converter-in .22s ease-out; }
@keyframes converter-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.currency-converter form { padding: 30px; }
.converter-header {
  min-height: 0;
  padding: 0 0 22px;
  position: static;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  background: transparent;
  backdrop-filter: none;
}
.converter-header span { display: block; color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.converter-header h2,
.converter-header .converter-title { display: block; margin: 4px 0 0; color: var(--navy); font: 650 30px/1.3 "Noto Serif SC", "Noto Serif JP", Georgia, serif; }
.converter-header button {
  width: 38px;
  height: 38px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
.converter-fields {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 42px 1fr;
  align-items: end;
  gap: 12px;
}
.converter-fields label { min-width: 0; display: grid; gap: 7px; }
.converter-fields label > span { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.converter-fields input,
.converter-fields select {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid #cfdcdf;
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
.converter-fields input:focus,
.converter-fields select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(21, 54, 76, .10); }
.converter-swap {
  width: 42px;
  height: 42px;
  margin-bottom: 3px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd9dd;
  border-radius: 50%;
  background: var(--mist);
  color: var(--navy);
  font-size: 19px;
  cursor: pointer;
}
.converter-result {
  margin-top: 22px;
  padding: 22px 24px;
  display: grid;
  background: linear-gradient(135deg, var(--sky), #f7efec);
  border: 1px solid #d5e4e7;
  border-radius: 17px;
}
.converter-result small { color: var(--muted); font-size: 11px; font-weight: 800; }
.converter-result output { margin: 2px 0; color: var(--navy); font: 700 clamp(27px, 5vw, 39px)/1.25 "Noto Serif SC", "Noto Serif JP", Georgia, serif; overflow-wrap: anywhere; }
.converter-result > span { color: #71828b; font-size: 9px; font-weight: 800; }
.converter-note { margin: 18px 0 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.converter-source { display: block; margin-top: 6px; color: #89969d; font-size: 8px; }
.converter-source a { color: var(--navy); font-weight: 800; text-decoration: none; }

.section { max-width: var(--max); margin: 0 auto; padding: 94px 24px; }
.section-heading { max-width: 820px; margin-bottom: 40px; position: relative; }
.section-heading::after {
  content: "";
  width: 112px;
  height: 3px;
  margin-top: 15px;
  display: block;
  background: linear-gradient(90deg, var(--red) 0 42%, #9fc7d1 42%);
  border-radius: 999px;
}
.section-heading h2,
.offer-panel h2,
.offer-summary h2,
.cta-card h2,
.editorial-note h2,
.brand-detail h2,
.share-panel h2,
.advantage h2,
.reform h2,
.checklist-band h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-family: "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Segoe UI", Arial, sans-serif;
  font-size: clamp(31px, 4.2vw, 48px);
  font-weight: 740;
  line-height: 1.34;
}
.section-heading p { color: var(--muted); }

.partners { padding-top: 105px; }
.partner-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 18px; }
.partner-grid article { min-height: 320px; padding: 48px; overflow: hidden; background: var(--cream); border-radius: 22px; }
.partner-grid article:first-child { background: var(--sky); color: var(--navy); border: 1px solid #d3e4e8; }
.partner-grid article:last-child { background: var(--coral-soft); border: 1px solid #eadbd8; }
.partner-grid article:first-child .partner-logo { padding: 9px 14px; background: #fff; border-radius: 10px; }
.partner-grid article p { color: var(--muted); }
.partner-grid article:first-child p { color: #536c7d; }
.partner-grid article > div:last-child { display: flex; flex-wrap: wrap; gap: 22px; }
.partner-grid article:first-child .text-link { color: var(--navy); }

.basics { max-width: none; padding-left: max(24px, calc((100vw - var(--max)) / 2)); padding-right: max(24px, calc((100vw - var(--max)) / 2)); background: var(--cream); }
.number-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px; background: transparent; }
.number-grid article { min-height: 285px; padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.number-grid article:nth-child(1),
.number-grid article:nth-child(2),
.number-grid article:nth-child(3) { background: #fff; border-color: var(--line); }
.number-grid b { color: var(--gold); font: 500 38px/1 Georgia, serif; }
.number-grid h3 { margin: 24px 0 12px; color: var(--navy); font: 600 21px/1.5 "Noto Serif SC", "Noto Serif JP", Georgia, serif; }
.number-grid p { color: var(--muted); font-size: 13px; }

.store-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.store-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 30px rgba(16,40,61,.06); }
.store-card:nth-child(4n+1),
.store-card:nth-child(4n+2),
.store-card:nth-child(4n+3),
.store-card:nth-child(4n+4) { border-bottom: 1px solid var(--line); }
.store-card figure { position: relative; margin: 0; overflow: hidden; }
.store-card figure img { width: 100%; height: 300px; object-fit: cover; transition: transform .35s ease; }
.store-card:hover figure img { transform: scale(1.015); }
.store-card figcaption { position: absolute; left: 12px; bottom: 12px; padding: 6px 9px; background: var(--navy); color: #fff; font: 800 10px/1 sans-serif; letter-spacing: .12em; }
.store-card > div { padding: 24px 26px 27px; }
.store-card h3 { margin: 0 0 5px; color: var(--navy); font: 600 23px/1.45 "Noto Serif SC", "Noto Serif JP", Georgia, serif; }
.store-card p { margin: 0; color: var(--muted); font-size: 12px; }
.gateway-card { grid-column: 1 / -1; display: grid; grid-template-columns: .75fr 1.25fr; min-height: 240px; overflow: hidden; background: var(--cream); border: 1px solid #e5dccb; border-radius: 18px; }
.gateway-card > div:last-child { padding: 38px 42px; }
.gateway-card h3 { margin: 0 0 12px; color: var(--navy); font: 600 28px/1.4 "Noto Serif SC", "Noto Serif JP", Georgia, serif; }
.gateway-card p { margin: 0; color: var(--muted); }
.gateway-mark { padding: 30px; display: flex; flex-direction: column; justify-content: center; align-items: center; background: var(--navy); color: #fff; text-align: center; }
.gateway-mark b { font: 600 clamp(28px, 4vw, 48px)/1 Georgia, serif; letter-spacing: .08em; }
.gateway-mark span { margin-top: 18px; color: #b8c6d0; font-size: 10px; letter-spacing: .12em; }
.section-cta { margin-top: 30px; }

.map-section { padding-top: 20px; }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.map-grid a { overflow: hidden; background: var(--mist); border: 1px solid var(--line); border-radius: 18px; text-decoration: none; }
.map-grid img { width: 100%; height: 390px; padding: 20px; object-fit: contain; background: #fff; }
.map-grid a > div { padding: 17px 20px; display: flex; justify-content: space-between; gap: 20px; color: var(--navy); }
.map-grid b { font-size: 12px; letter-spacing: .12em; }
.map-grid span { font-size: 11px; font-weight: 800; }

.guides { padding-top: 80px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card { overflow: hidden; color: inherit; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 30px rgba(16,40,61,.06); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.guide-card:nth-child(1),
.guide-card:nth-child(2),
.guide-card:nth-child(3) { background: #fff; border-color: var(--line); }
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 17px 38px rgba(16,40,61,.11); }
.guide-card img { width: calc(100% - 20px); height: 260px; margin: 10px 10px 0; object-fit: cover; border-radius: 12px; }
.guide-card > div { padding: 25px 27px 29px; }
.guide-card span { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.guide-card h3 { min-height: 89px; margin: 9px 0 18px; color: var(--navy); font: 600 21px/1.5 "Noto Serif SC", "Noto Serif JP", Georgia, serif; }
.guide-card b { color: var(--navy); font-size: 11px; }

.number-grid h3,
.store-card h3,
.gateway-card h3,
.guide-card h3,
.steps h3,
.article-content h2 {
  font-family: "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Segoe UI", Arial, sans-serif;
  font-weight: 730;
}

.offer-panel {
  max-width: var(--max);
  margin: 0 auto 90px;
  padding: 54px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 65px;
  background: var(--navy);
  border-radius: 22px;
  color: #fff;
}
.offer-panel > div:first-child > span { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.offer-panel h2 { color: #fff; font-size: 36px; }
.offer-panel p { max-width: 750px; margin-bottom: 0; color: #d0dbe2; }
.offer-panel > div:last-child { display: flex; flex-direction: column; gap: 11px; min-width: 260px; }
.offer-panel--compact { margin-top: 50px; }

.offer-summary {
  max-width: var(--max);
  margin: 0 auto 35px;
  padding: 34px 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  background: var(--cream);
  border: 1px solid #e5dccb;
}
.offer-summary > div > span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.offer-summary strong { display: block; color: var(--navy); font: 700 68px/1 Georgia, serif; }
.offer-summary strong small { color: var(--red); font-size: 32px; }
.offer-summary p { max-width: 680px; margin: 9px 0 0; color: var(--muted); font-size: 12px; }
.offer-summary--quiet { margin-bottom: 85px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.steps--four { grid-template-columns: repeat(4, 1fr); }
.steps article { min-height: 270px; padding: 32px; background: #fff; }
.steps b { color: var(--gold); font: 500 39px/1 Georgia, serif; }
.steps h3 { margin: 25px 0 13px; color: var(--navy); font: 600 21px/1.45 "Noto Serif SC", "Noto Serif JP", Georgia, serif; }
.steps p { color: var(--muted); font-size: 13px; }

.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 22px 4px; display: flex; justify-content: space-between; gap: 20px; list-style: none; color: var(--navy); font-weight: 900; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { font-style: normal; font-size: 18px; font-weight: 400; }
.faq-list p { margin: 0; padding: 0 4px 25px; color: var(--muted); }

.share-panel {
  max-width: var(--max);
  margin: 0 auto 90px;
  padding: 44px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 45px;
  background: var(--cream);
}
.share-panel span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.share-panel h2 { font-size: 34px; }
.share-panel > div:last-child { display: flex; align-items: center; gap: 22px; }

.reason-strip {
  max-width: var(--max);
  margin: 0 auto 70px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reason-strip div { padding: 24px 26px; display: flex; align-items: center; gap: 17px; border-right: 1px solid var(--line); }
.reason-strip div:last-child { border: 0; }
.reason-strip b { color: var(--gold); font: 500 28px/1 Georgia, serif; }
.reason-strip span { color: var(--navy); font-size: 12px; font-weight: 900; }
.cta-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 55px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 55px;
  background: var(--cream);
  border-left: 5px solid var(--red);
}
.cta-card > div > span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.cta-card h2 { font-size: 36px; }
.cta-card p { color: var(--muted); }
.cta-card--saving { background: linear-gradient(105deg, #fff8f2 0%, #f4eee4 100%); }
.reservation-saving-badge {
  margin: 0 0 0 12px;
  padding: 5px 9px;
  display: inline-flex;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
}
.brand-detail {
  max-width: var(--max);
  margin: 10px auto 90px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  background: var(--navy);
  color: #fff;
}
.brand-detail .partner-logo { padding: 12px 18px; background: #fff; }
.brand-detail h2 { color: #fff; font-size: 34px; }
.brand-detail p { color: #cdd8df; }

.flow-section { max-width: none; padding-left: max(24px, calc((100vw - var(--max)) / 2)); padding-right: max(24px, calc((100vw - var(--max)) / 2)); background: var(--cream); }
.journey-flow { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; }
.journey-flow li { min-height: 185px; padding: 24px; border-left: 1px solid #d8d0c2; }
.journey-flow li:last-child { border-right: 1px solid #d8d0c2; }
.journey-flow b { display: block; margin-bottom: 35px; color: var(--gold); font: 500 28px/1 Georgia, serif; }
.journey-flow span { color: var(--navy); font-size: 12px; font-weight: 900; }
.editorial-note {
  max-width: var(--max);
  margin: 25px auto 90px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.editorial-note > div { padding: 55px; background: var(--navy); color: #fff; }
.editorial-note > div > span { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.editorial-note h2 { color: #fff; font-size: 36px; }
.editorial-note p { color: #cbd7de; }
.editorial-note img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-grid article { padding: 34px; background: var(--mist); border-top: 3px solid var(--navy); }
.info-grid h3 { margin: 0 0 15px; color: var(--navy); font: 600 21px/1.45 "Noto Serif SC", "Noto Serif JP", Georgia, serif; }
.info-grid p { color: var(--muted); font-size: 13px; }

.article-layout {
  max-width: var(--max);
  margin: 25px auto 70px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 80px;
  align-items: start;
}
.article-layout aside { position: sticky; top: 128px; padding: 22px; background: var(--cream); border-top: 3px solid var(--navy); }
.article-layout aside b { display: block; margin-bottom: 12px; color: var(--navy); font-size: 12px; letter-spacing: .08em; }
.article-layout aside span { display: block; padding: 9px 0; color: var(--muted); font-size: 11px; border-top: 1px solid #ded6c8; }
.article-content { max-width: 790px; }
.article-content section { padding: 54px 0; border-top: 1px solid var(--line); }
.article-content section:first-child { border-top: 0; }
.article-content h2 { margin: 9px 0 20px; color: var(--navy); font: 600 32px/1.45 "Noto Serif SC", "Noto Serif JP", Georgia, serif; }
.article-content p { color: #4f606d; font-size: 15px; line-height: 2; }
.checklist-band {
  max-width: var(--max);
  margin: 0 auto 85px;
  padding: 48px 55px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: var(--cream);
}
.checklist-band span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.checklist-band h2 { font-size: 34px; }
.checklist-band ul { margin: 0; padding: 0; list-style: none; }
.checklist-band li { padding: 13px 0 13px 34px; position: relative; border-bottom: 1px solid #dad2c5; font-weight: 800; }
.checklist-band li::before { content: "✓"; position: absolute; left: 3px; color: var(--red); }

.compare { max-width: var(--max); margin: 0 auto 85px; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare-card { padding: 52px; background: var(--cream); }
.compare-card--dark { background: var(--navy); color: #fff; }
.compare-card > span { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.compare-card--dark > span { color: var(--gold); }
.compare-card h2 { margin: 12px 0; color: var(--navy); font: 600 48px/1 Georgia, serif; }
.compare-card--dark h2 { color: #fff; }
.compare-card h3 { margin: 22px 0 14px; color: var(--navy); font: 600 22px/1.5 "Noto Serif SC", "Noto Serif JP", Georgia, serif; }
.compare-card--dark h3 { color: #fff; }
.compare-card p { color: var(--muted); }
.compare-card--dark p { color: #cad6de; }
.compare-card ul { margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; list-style: none; }
.compare-card li { padding: 10px; background: #fff; font-size: 10px; font-weight: 900; }
.compare-card--dark li { background: rgba(255,255,255,.08); }
.reform { max-width: var(--max); margin: 0 auto 85px; padding: 60px; background: #fff7e8; }
.reform > div > span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.reform ol { margin: 42px 0 28px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; }
.reform li { min-height: 170px; padding: 25px; background: #fff; }
.reform li b { color: var(--gold); font: 500 28px/1 Georgia, serif; }
.reform li p { margin: 22px 0 0; color: var(--navy); font-size: 13px; font-weight: 800; }
.reform aside { padding: 20px 22px; background: #fff; border-left: 4px solid var(--gold); color: var(--muted); font-size: 12px; }
.advantage { max-width: var(--max); margin: 0 auto 70px; padding: 62px; background: var(--navy); color: #fff; }
.advantage > div:first-child { display: flex; gap: 25px; align-items: center; }
.advantage .partner-logo { max-width: 270px; height: 58px; margin: 0; padding: 10px 14px; background: #fff; }
.advantage h2 { color: #fff; }
.advantage p { max-width: 950px; color: #ced9e0; font-size: 16px; line-height: 2; }
.advantage > div:last-child { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.sources { max-width: var(--max); margin: 0 auto 85px; padding: 0 24px; display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; }
.sources b { color: var(--navy); font-size: 11px; letter-spacing: .1em; }
.sources a { color: var(--muted); font-size: 11px; }

footer {
  padding: 72px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.3fr .9fr .8fr;
  gap: 60px;
  background: var(--navy-deep);
  color: #d7e0e6;
}
.footer-brand img { width: auto; max-width: 220px; max-height: 70px; padding: 8px 12px; background: #fff; }
.footer-brand p { max-width: 390px; }
footer b { display: block; margin-bottom: 14px; color: #fff; font-size: 11px; letter-spacing: .12em; }
footer a { display: block; padding: 3px 0; color: #d7e0e6; font-size: 12px; text-decoration: none; }
footer p { font-size: 12px; }
.footer-note { grid-column: 1 / -1; padding-top: 22px; display: flex; justify-content: space-between; gap: 50px; border-top: 1px solid #3c4d5a; }
.footer-note p { max-width: 760px; margin: 0; }
.sticky-offer { display: none; }

@media (max-width: 1180px) {
  .live-rates dl > div:nth-child(n+5) { display: none; }
}

@media (max-width: 1080px) {
  header nav { display: none; }
  .menu-button { display: block; padding: 8px 10px; background: #fff; border: 1px solid var(--line); color: var(--navy); font-size: 11px; }
  .menu-button + nav.open { position: absolute; top: 85px; left: 0; right: 0; padding: 25px; display: flex; align-items: flex-start; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .hero { grid-template-columns: 1fr; gap: 35px; }
  .hero-photo { min-height: 450px; }
  .hero-photo img { height: 450px; }
  .partner-grid { grid-template-columns: 1fr; }
  .steps--four { grid-template-columns: repeat(2, 1fr); }
  .journey-flow { grid-template-columns: repeat(3, 1fr); }
  .offer-panel, .cta-card, .brand-detail { grid-template-columns: 1fr; }
  .offer-panel > div:last-child { align-items: flex-start; }
  .hero-saving { max-width: 780px; }
}

@media (max-width: 760px) {
  header { min-height: 70px; padding: 8px 14px; gap: 12px; }
  .site-logo { width: 132px; }
  .site-logo img { width: auto; max-width: 128px; max-height: 36px; }
  .site-logo small { display: none; }
  .languages summary {
    width: auto;
    min-width: 78px;
    max-width: 122px;
    min-height: 44px;
    padding: 0 10px;
    overflow: visible;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
  }
  .languages div { top: 50px; }
  .menu-button + nav.open { top: 69px; }
  .hero { padding: 46px 18px 38px; }
  .home-hero { margin: 12px 12px 0; padding: 38px 16px 42px; border-radius: 26px; }
  .hero-copy h1 { font-size: 39px; }
  .article-hero .hero-copy h1 { font-size: 36px; }
  .lead { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-saving { margin: 23px 0; padding: 20px 17px; }
  .hero-saving__intro strong { font-size: 22px; }
  .hero-saving__grid { grid-template-columns: 1fr; }
  .hero-saving__grid p { min-height: 0; }
  .coupon-banner { padding: 17px 15px; grid-template-columns: minmax(0, 1fr) 84px; gap: 12px; }
  .coupon-banner__logo { width: 140px; height: 36px; }
  .coupon-banner .coupon-banner__copy h2 { font-size: 20px; }
  .coupon-banner__value { padding-left: 11px; }
  .coupon-banner__value b { font-size: 55px; }
  .coupon-banner__off { font-size: 20px; }
  .hero-actions--guides .text-link { padding: 10px 4px; }
  .btn { width: 100%; }
  .hero-photo { min-height: 350px; }
  .hero-photo img { height: 350px; }
  .hero-photo::before { left: -8px; width: 45px; height: 180px; }
  .brand-stage { min-height: 310px; padding: 34px 24px; }
  .article-hero .partner-logo { max-width: 220px; }
  .intro-band { margin-top: 18px; padding: 32px 18px; }
  .intro-band p { font-size: 15px; }
  .live-info { width: 100%; min-height: 38px; margin: 0; padding: 6px 12px; display: flex; align-items: center; gap: 12px; overflow-x: auto; }
  .live-info__head { align-items: center; flex-direction: row; gap: 5px; }
  .live-info__head h2 { display: none; }
  .live-info__head time { display: none; }
  .live-info__grid { display: flex; gap: 14px; }
  .live-info article { padding: 0; }
  .live-card__title { display: none; }
  .weather-places { display: flex; gap: 8px; }
  .weather-places > div { gap: 3px; }
  .weather-icon { width: 18px; height: 18px; flex-basis: 18px; font-size: 11px; }
  .weather-places strong { font-size: 10px; }
  .live-rates dl { display: flex; gap: 8px; }
  .live-rates dl > div:nth-child(n+3) { display: none; }
  .live-rates p { display: none; }
  .live-info__head { order: 0; }
  .converter-open { order: 1; min-height: 27px; padding: 4px 10px; }
  .live-info__grid { order: 2; }
  .live-info > footer { order: 3; margin-left: auto; display: flex; }
  .currency-converter { width: calc(100vw - 24px); border-radius: 20px; }
  .currency-converter form { padding: 22px 18px; }
  .converter-header { padding-bottom: 17px; }
  .converter-header h2,
  .converter-header .converter-title { font-size: 26px; }
  .converter-fields { grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr); gap: 9px; }
  .converter-amount { grid-column: 1 / -1; }
  .converter-fields input,
  .converter-fields select { height: 47px; padding: 0 10px; font-size: 12px; }
  .converter-swap { width: 40px; height: 40px; }
  .converter-result { padding: 18px; }
  .converter-result output { font-size: 28px; }
  .section { padding: 68px 18px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 32px; }
  .partner-grid article { min-height: 0; padding: 34px 24px; }
  .partner-logo { max-width: 255px; height: 62px; }
  .number-grid, .store-grid, .guide-grid, .map-grid, .info-grid, .compare { grid-template-columns: 1fr; }
  .number-grid article { min-height: 0; }
  .store-card figure img { height: 260px; }
  .gateway-card { grid-column: auto; grid-template-columns: 1fr; }
  .gateway-mark { min-height: 190px; }
  .gateway-card > div:last-child { padding: 30px 24px; }
  .map-grid img { height: 300px; }
  .guide-card img { height: 260px; }
  .guide-card h3 { min-height: 0; }
  .offer-panel { margin: 0 18px 65px; padding: 36px 24px; gap: 28px; }
  .offer-panel h2 { font-size: 30px; }
  .offer-panel > div:last-child { min-width: 0; }
  .offer-summary { margin: 0 18px 25px; padding: 28px 24px; grid-template-columns: 1fr; }
  .steps, .steps--four { grid-template-columns: 1fr; }
  .steps article { min-height: 0; }
  .faq-section { grid-template-columns: 1fr; gap: 20px; }
  .share-panel { margin: 0 18px 65px; padding: 32px 24px; grid-template-columns: 1fr; }
  .share-panel > div:last-child { display: grid; }
  .reason-strip { padding: 0 18px; grid-template-columns: 1fr; }
  .reason-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta-card, .brand-detail { margin: 0 18px; padding: 34px 24px; }
  .brand-detail .partner-logo { max-width: 260px; }
  .journey-flow { grid-template-columns: 1fr; }
  .journey-flow li, .journey-flow li:last-child { min-height: 0; display: flex; align-items: center; gap: 20px; border-right: 1px solid #d8d0c2; border-bottom: 1px solid #d8d0c2; }
  .journey-flow b { margin: 0; }
  .editorial-note { margin: 0 18px 65px; padding: 0; grid-template-columns: 1fr; }
  .editorial-note > div { padding: 36px 24px; }
  .editorial-note img { min-height: 300px; }
  .article-layout { margin-top: 0; padding: 0 18px; grid-template-columns: 1fr; gap: 20px; }
  .article-layout aside { position: static; }
  .article-content h2 { font-size: 28px; }
  .checklist-band { margin: 0 18px 65px; padding: 34px 24px; grid-template-columns: 1fr; gap: 25px; }
  .compare { margin-bottom: 65px; padding: 0 18px; }
  .compare-card { padding: 36px 24px; }
  .reform { margin: 0 18px 65px; padding: 36px 24px; }
  .reform ol { grid-template-columns: 1fr; }
  .advantage { margin: 0 18px 50px; padding: 38px 24px; }
  .advantage > div:first-child { align-items: flex-start; flex-direction: column; }
  .advantage .partner-logo { max-width: 240px; }
  .sources { padding: 0 18px; align-items: flex-start; flex-direction: column; }
  footer { padding: 55px 18px; grid-template-columns: 1fr; gap: 32px; }
  .footer-note { grid-column: auto; display: block; }
  .sticky-offer { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: 8px; display: block; background: rgba(8, 27, 43, .96); }
  .sticky-offer .btn { min-height: 48px; }
  body:has(.sticky-offer) footer { padding-bottom: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* v6: trust, readability, stable media and keyboard/touch behaviour */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #e4a74f;
  outline-offset: 3px;
}

header nav a[aria-current="page"]::after { right: 0; }
header nav a[aria-current="page"] { color: var(--red-dark); }
.menu-button { min-height: 44px; }
.languages summary { min-height: 44px; display: flex; align-items: center; }
.languages a { min-height: 44px; }
.site-logo small { font-size: 10px; }
.hero-saving__grid p { font-size: 12px; }
.hero-saving > small { font-size: 11px; }
.coupon-banner__copy > span,
.coupon-banner__value-label,
.coupon-banner__value em { font-size: 10px; }
.coupon-banner__copy strong { font-size: 12px; }
.live-card__title b,
.live-rates dt,
.live-info__head time { font-size: 9px; }
.live-rates dd { font-size: 11px; }
.live-info > footer { font-size: 8px; }
.converter-open { min-height: 44px; padding: 8px 14px; font-size: 11px; }
.converter-fields label > span,
.converter-result > span,
.converter-source { font-size: 10px; }
.text-button {
  min-height: 44px;
  padding: 10px 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.live-info--rates { justify-content: flex-end; }
.live-info--rates .live-info__head { margin-right: auto; }
.live-info--rates .live-info__head span { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.live-info--rates .live-rates { gap: 14px; }
.live-info--rates .live-rates dl { gap: 13px; }

.trust-page .article-hero { padding-bottom: 46px; }
.trust-grid,
.contact-grid {
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-grid article,
.contact-grid article {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(16, 44, 62, .05);
}
.trust-grid article > span,
.contact-grid article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}
.trust-grid h2,
.contact-grid h2 { margin: 16px 0 13px; color: var(--navy); font-size: 25px; line-height: 1.45; }
.trust-grid p,
.contact-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.contact-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid article { display: flex; align-items: flex-start; flex-direction: column; }
.contact-grid a { margin-top: 14px; color: var(--navy); font-weight: 900; overflow-wrap: anywhere; }
.contact-grid small { margin-top: 18px; color: var(--muted); font-size: 12px; }
.operator-card {
  max-width: var(--max);
  margin: 0 auto 90px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  background: var(--navy-deep);
  border-radius: 20px;
  color: #fff;
}
.operator-card span { color: #ffd166; font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.operator-card h2 { margin: 8px 0; color: #fff; font-size: 32px; }
.operator-card p { margin: 0; color: #d7e0e6; }
.policy-content {
  max-width: 940px;
  margin: 0 auto 90px;
  padding: 0 24px;
}
.policy-content section { padding: 32px 0; border-top: 1px solid var(--line); }
.policy-content section:last-of-type { border-bottom: 1px solid var(--line); }
.policy-content h2 { margin: 0 0 12px; color: var(--navy); font-size: 25px; }
.policy-content p { margin: 0; color: var(--muted); font-size: 15px; line-height: 2; }
.policy-content aside { margin-top: 30px; padding: 22px; background: var(--cream); }
.policy-content aside a { color: var(--navy); font-weight: 900; }

@media (max-width: 760px) {
  .menu-button { min-width: 48px; display: flex; align-items: center; justify-content: center; }
  .languages summary { width: auto; min-width: 78px; max-width: 122px; justify-content: center; }
  .live-info--rates {
    width: 100%;
    padding: 7px 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    overflow: visible;
  }
  .live-info--rates .live-info__head { display: none; }
  .live-info--rates .live-info__grid { min-width: 0; order: 0; display: block; overflow: hidden; }
  .live-info--rates .live-rates { width: 100%; min-width: 0; display: block; }
  .live-info--rates .live-rates dl { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .live-info--rates .live-rates dl > div { min-width: 0; display: none; }
  .live-info--rates .live-rates dl > div.mobile-rate { display: flex; }
  .live-info--rates .live-rates dl > div.mobile-rate--primary { order: 1; }
  .live-info--rates .live-rates dl > div.mobile-rate--secondary { order: 2; }
  .live-info--rates .converter-open { min-height: 38px; margin: 0; padding: 6px 11px; order: 1; }
  .live-info--rates > footer { display: none; }
  .currency-converter { width: calc(100vw - 16px); max-width: calc(100vw - 16px); }
  .currency-converter form { padding: 20px 16px; overflow: hidden; }
  .converter-fields { grid-template-columns: 1fr; }
  .converter-amount { grid-column: auto; }
  .converter-fields input,
  .converter-fields select { min-width: 0; max-width: 100%; }
  .converter-swap { margin: 0 auto; transform: rotate(90deg); }
  .trust-grid,
  .contact-grid { padding: 0 18px; grid-template-columns: 1fr; }
  .trust-grid article,
  .contact-grid article { padding: 28px 24px; }
  .operator-card { margin: 0 18px 65px; padding: 34px 24px; grid-template-columns: 1fr; }
  .operator-card h2 { font-size: 27px; }
  .policy-content { padding: 0 18px; }
  .sticky-offer--home {
    display: block;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .sticky-offer--home.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
}

@media (max-width: 360px) {
  header { padding-right: 10px; padding-left: 10px; gap: 8px; }
  .site-logo { width: 108px; }
  .site-logo img { max-width: 106px; }
}
