:root {
  --ink:#162224;
  --muted:#526466;
  --deep:#12343b;
  --teal:#0f766e;
  --teal-dark:#115e59;
  --copper:#a16207;
  --gold:#f3c76d;
  --paper:#f6f8f7;
  --soft:#eef5f3;
  --line:#d7e3df;
  --white:#ffffff;
  --line-green:#06c755;
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  margin:0;
  font-family:"IBM Plex Sans Thai","Noto Sans SC","Inter",system-ui,sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  padding-bottom:64px;
  overflow-x:hidden;
}
body:not([data-lang]) .lang-block { display:none; }
body:not([data-lang]) .lang-th { display:contents; }
.lang-block { display:none; }
body[data-lang="th"] .lang-th,
body[data-lang="en"] .lang-en,
body[data-lang="zh"] .lang-zh { display:contents; }
a { color:inherit; }
img { display:block; max-width:100%; }
button, a.button, .page-card { cursor:pointer; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline:3px solid var(--gold);
  outline-offset:3px;
}
.skip-link {
  position:fixed;
  left:12px;
  top:8px;
  z-index:100;
  transform:translateY(-140%);
  background:var(--gold);
  color:#111;
  padding:8px 12px;
  border-radius:8px;
  font-weight:800;
}
.skip-link:focus { transform:translateY(0); }
.topbar {
  position:sticky;
  top:0;
  z-index:40;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  padding:10px clamp(14px,3vw,36px);
  color:var(--white);
  background:rgba(18,52,59,.97);
  border-bottom:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(14px);
}
.brandmark {
  display:flex;
  flex-direction:column;
  min-width:0;
  line-height:1.2;
  text-decoration:none;
}
.brandmark strong { font:800 .92rem/1 "Inter",sans-serif; letter-spacing:.08em; }
.brandmark span { color:#d7efea; font-size:.75rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.navlinks {
  display:flex;
  align-items:center;
  gap:6px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.navlinks::-webkit-scrollbar { display:none; }
.navlinks a {
  flex:0 0 auto;
  text-decoration:none;
  color:#e9f6f4;
  border:1px solid transparent;
  border-radius:999px;
  padding:6px 10px;
  font-size:.86rem;
  font-weight:700;
  line-height:1.1;
}
.navlinks a:hover, .navlinks a.active {
  color:var(--deep);
  background:var(--white);
  border-color:rgba(255,255,255,.45);
}
.langbar { display:flex; align-items:center; gap:6px; }
.langbar button {
  border:1px solid rgba(255,255,255,.42);
  background:transparent;
  color:var(--white);
  border-radius:999px;
  padding:5px 10px;
  font:800 .78rem/1 "Inter",sans-serif;
}
.langbar button.on { background:var(--white); color:var(--deep); }
.hero {
  position:relative;
  min-height:66dvh;
  display:grid;
  align-items:end;
  color:var(--white);
  background:
    linear-gradient(90deg, rgba(9,24,27,.94) 0%, rgba(9,24,27,.76) 46%, rgba(9,24,27,.25) 100%),
    var(--hero-image) center 42% / cover no-repeat;
  padding:clamp(78px,10vw,124px) clamp(16px,4vw,48px) clamp(38px,6vw,70px);
}
.inner { width:min(1120px,100%); margin:0 auto; }
.hero-inner { margin:0 auto; width:min(1120px,100%); }
.eyebrow {
  margin:0 0 12px;
  color:#8fe3d7;
  font:800 .78rem/1.4 "Inter",sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
}
h1 {
  max-width:900px;
  margin:0;
  font-size:clamp(2rem,4.5vw,4.8rem);
  line-height:1.08;
  letter-spacing:0;
}
.hero-lead {
  max-width:790px;
  margin:18px 0 0;
  color:#e4f1ef;
  font-size:clamp(1rem,1.6vw,1.25rem);
}
.hero-facts {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:20px;
  max-width:820px;
}
.hero-facts span {
  border:1px solid rgba(255,255,255,.36);
  background:rgba(255,255,255,.10);
  border-radius:999px;
  padding:6px 10px;
  color:#f6fffd;
  font-size:.9rem;
  font-weight:800;
}
.cta-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:8px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:900;
  line-height:1.2;
  transition:background .2s ease,border-color .2s ease,color .2s ease, box-shadow .2s ease;
}
.button.primary { background:var(--teal); color:var(--white); }
.button.primary:hover { background:var(--teal-dark); }
.button.line { background:var(--line-green); color:var(--white); }
.button.ghost { color:var(--white); border-color:rgba(255,255,255,.46); background:rgba(255,255,255,.08); }
.button.ghost.dark { color:var(--deep); border-color:var(--line); background:var(--white); }
.proofbar {
  background:var(--white);
  border-bottom:1px solid var(--line);
}
.proofgrid {
  width:min(1160px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:1px;
  background:var(--line);
  border-left:1px solid var(--line);
  border-right:1px solid var(--line);
}
.proofitem {
  min-height:92px;
  padding:18px 14px;
  background:var(--white);
}
.proofitem strong { display:block; font:800 1.03rem/1.2 "Inter",sans-serif; color:var(--deep); }
.proofitem span { display:block; margin-top:5px; color:var(--muted); font-size:.88rem; }
.band { padding:clamp(42px,7vw,78px) clamp(16px,4vw,32px); }
.band.white { background:var(--white); }
.band.soft { background:var(--soft); }
.section-head { max-width:860px; margin-bottom:24px; }
.kicker { color:var(--copper); font-weight:900; font-size:.82rem; text-transform:uppercase; letter-spacing:.1em; margin:0 0 8px; }
h2 { margin:0; color:var(--deep); font-size:clamp(1.55rem,3vw,2.65rem); line-height:1.18; letter-spacing:0; }
h3 { margin:0 0 10px; color:var(--deep); font-size:1.12rem; line-height:1.35; }
p { margin:0; }
.section-copy { margin-top:12px; color:var(--muted); font-size:1.03rem; }
.grid-2, .grid-3, .grid-4 {
  display:grid;
  gap:14px;
}
.grid-2 { grid-template-columns:repeat(2,1fr); }
.grid-3 { grid-template-columns:repeat(3,1fr); }
.grid-4 { grid-template-columns:repeat(4,1fr); }
.card {
  background:var(--white);
  border:1px solid var(--line);
  border-radius:8px;
  padding:20px;
}
.card p, .card li { color:var(--muted); }
.card-image {
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:14px;
}
.list { margin:10px 0 0 18px; padding:0; }
.list li { margin:8px 0; }
.text-link {
  display:inline-flex;
  margin-top:16px;
  color:var(--teal);
  font-weight:900;
  text-decoration:none;
}
.text-link:hover { color:var(--teal-dark); }
.page-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.page-card {
  position:relative;
  display:grid;
  grid-template-rows:auto auto auto 1fr auto;
  gap:10px;
  min-height:100%;
  padding:0 0 16px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  text-decoration:none;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.page-card:hover {
  border-color:#8bbdb5;
  box-shadow:0 14px 30px rgba(18,52,59,.10);
  transform:translateY(-1px);
}
.page-card img {
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
.page-card strong,
.page-card span,
.page-card em { margin-left:16px; margin-right:16px; }
.page-card strong { color:var(--deep); font-size:1.08rem; line-height:1.3; }
.page-card span:not(.page-tag) { color:var(--muted); font-style:normal; }
.page-card em {
  margin-top:auto;
  color:var(--teal);
  font:900 .78rem/1 "Inter",sans-serif;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.page-tag {
  justify-self:start;
  width:max-content;
  border-radius:999px;
  padding:4px 8px;
  background:#f2faf8;
  color:var(--teal);
  font:900 .72rem/1 "Inter",sans-serif;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.insight-card strong {
  font-size:1.02rem;
}
.article-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:18px;
  align-items:start;
}
.article-photo {
  grid-column:1/-1;
}
.article-photo img {
  width:100%;
  aspect-ratio:16/7;
  object-fit:cover;
}
.article-photo figcaption {
  color:var(--muted);
  font-size:.9rem;
}
.article-main {
  display:grid;
  gap:18px;
  min-width:0;
}
.article-meta {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.article-meta span {
  display:inline-flex;
  align-items:center;
  min-height:30px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:5px 10px;
  background:var(--white);
  color:var(--muted);
  font:900 .72rem/1.1 "Inter",sans-serif;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.article-takeaways,
.article-note,
.article-side-box {
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--white);
}
.article-takeaways {
  padding:18px 20px;
  border-color:#8bbdb5;
  background:#f2faf8;
}
.article-takeaways strong,
.article-note strong,
.article-side-box strong {
  display:block;
  color:var(--deep);
  font-weight:900;
  margin-bottom:8px;
}
.article-takeaways ul,
.article-side-box ul {
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.article-takeaways li,
.article-side-box li {
  margin:7px 0;
}
.article-section {
  display:grid;
  gap:8px;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}
.article-section h2 {
  font-size:1.35rem;
  line-height:1.25;
}
.article-section p {
  color:var(--muted);
}
.article-note {
  padding:16px 18px;
  background:#f8fbfa;
}
.article-note p {
  color:var(--muted);
  font-size:.94rem;
}
.article-side {
  position:sticky;
  top:92px;
  display:grid;
  gap:12px;
}
.article-side-box {
  padding:16px;
}
.article-links {
  display:grid;
  gap:8px;
}
.article-links a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  min-height:40px;
  padding:9px 10px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#f8fbfa;
  color:var(--deep);
  text-decoration:none;
  font-weight:900;
}
.article-links a::after {
  content:"›";
  flex:0 0 auto;
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:var(--teal);
  color:var(--white);
  font:900 1.1rem/1 "Inter",sans-serif;
}
.article-links a:hover {
  border-color:#8bbdb5;
  background:#e7f6f2;
}
.tablewrap {
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--white);
}
table {
  width:100%;
  min-width:760px;
  border-collapse:collapse;
  background:var(--white);
}
th, td {
  padding:13px 14px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}
th { background:var(--deep); color:var(--white); font-size:.92rem; }
td { color:var(--muted); }
tr:last-child td { border-bottom:0; }
.source-note {
  max-width:920px;
  margin:-6px 0 18px;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.55;
}
.route-pill {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:100%;
  text-decoration:none;
  border:1px solid #8bbdb5;
  border-radius:8px;
  padding:7px 10px;
  color:var(--deep);
  background:#f2faf8;
}
.route-pill strong {
  color:var(--teal);
  font-weight:900;
  line-height:1.15;
}
.route-pill:hover {
  border-color:var(--teal);
  background:#e7f6f2;
}
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.photo-overview-cta {
  margin:0 0 16px;
}
.photo-overview-cta a {
  display:grid;
  grid-template-columns:auto 1fr;
  gap:4px 12px;
  align-items:center;
  max-width:560px;
  padding:14px 16px;
  border:1px solid #8bbdb5;
  border-radius:8px;
  background:#f2faf8;
  color:var(--deep);
  text-decoration:none;
}
.photo-overview-cta span {
  grid-row:1/3;
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:var(--teal);
  color:var(--white);
  font:900 1.05rem/1 "Inter",sans-serif;
}
.photo-overview-cta strong {
  font-size:1.05rem;
  line-height:1.2;
}
.photo-overview-cta em {
  color:var(--muted);
  font-style:normal;
  font-size:.9rem;
}
.photo-overview-cta a:hover {
  border-color:var(--teal);
  background:#e7f6f2;
}
.photo-toolbar {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}
.photo-toolbar a {
  display:inline-flex;
  align-items:center;
  gap:7px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 11px;
  background:var(--white);
  color:var(--deep);
  text-decoration:none;
  font-weight:900;
  font-size:.86rem;
}
.photo-toolbar a:hover { border-color:#8bbdb5; color:var(--teal); }
.photo-toolbar span {
  min-width:24px;
  border-radius:999px;
  padding:2px 7px;
  background:#f2faf8;
  color:var(--teal);
  text-align:center;
  font:900 .74rem/1 "Inter",sans-serif;
}
.gallery-entry { margin:0 0 18px; }
.gallery-entry a {
  border-color:#8bbdb5;
  background:#f2faf8;
}
.photo-preview-stack {
  display:grid;
  gap:38px;
}
.preview-photo-section {
  scroll-margin-top:96px;
}
.photo-preview-head {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:end;
  gap:18px;
  margin-bottom:14px;
}
.photo-preview-head h2 {
  margin:0;
  color:var(--deep);
  font-size:clamp(1.35rem,2.2vw,2rem);
  line-height:1.12;
}
.photo-section-cta {
  min-width:210px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:4px 10px;
  align-items:center;
  padding:10px 12px;
  border:1px solid #8bbdb5;
  border-radius:8px;
  background:#f2faf8;
  color:var(--deep);
  text-decoration:none;
}
.photo-section-cta span {
  grid-row:1/3;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:var(--teal);
  color:var(--white);
  font:900 .95rem/1 "Inter",sans-serif;
}
.photo-section-cta strong {
  font-size:.92rem;
  line-height:1.15;
}
.photo-section-cta em {
  color:var(--muted);
  font-style:normal;
  font-size:.78rem;
}
.photo-section-cta:hover {
  border-color:var(--teal);
  background:#e7f6f2;
}
.photo-preview-grid {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
}
.photo-preview-card {
  position:relative;
  display:block;
  overflow:hidden;
  aspect-ratio:4/3;
  border:1px solid var(--line);
  border-radius:8px;
  background:#edf5f2;
  color:var(--white);
  text-decoration:none;
}
.photo-preview-card img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .18s ease;
}
.photo-preview-card:hover img {
  transform:scale(1.035);
}
.photo-preview-label {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:1;
  display:grid;
  gap:2px;
  padding:28px 8px 8px;
  background:linear-gradient(180deg, rgba(9,24,27,0) 0%, rgba(9,24,27,.82) 100%);
}
.photo-preview-label strong {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:.78rem;
  line-height:1.15;
}
.photo-preview-label em {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:rgba(255,255,255,.82);
  font:900 .62rem/1.1 "Inter",sans-serif;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.photo-preview-overlay {
  position:absolute;
  inset:0;
  z-index:2;
  display:grid;
  place-items:center;
  gap:5px;
  align-content:center;
  padding:14px;
  text-align:center;
  background:rgba(15,118,110,.78);
  color:var(--white);
}
.photo-preview-overlay strong {
  font:900 2rem/1 "Inter",sans-serif;
}
.photo-preview-overlay em {
  font-style:normal;
  font-weight:900;
  line-height:1.2;
}
.photo-more-banner {
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border:1px solid #8bbdb5;
  border-radius:8px;
  background:#f8fcfb;
  color:var(--deep);
  text-decoration:none;
}
.photo-more-banner strong {
  flex:0 0 auto;
  color:var(--teal);
  font-weight:900;
}
.photo-more-banner span {
  min-width:0;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.45;
}
.photo-more-banner em {
  flex:0 0 auto;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:var(--teal);
  color:var(--white);
  font:900 1.6rem/1 "Inter",sans-serif;
  font-style:normal;
}
.photo-more-banner:hover {
  border-color:var(--teal);
  background:#e7f6f2;
}
.photo-section { scroll-margin-top:90px; }
.photo-section + .photo-section { margin-top:44px; }
.section-head.compact { margin-bottom:18px; }
.photo-masonry {
  column-count:3;
  column-gap:14px;
}
.photo-tile {
  display:block;
  break-inside:avoid;
  margin:0 0 14px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--white);
  color:inherit;
  text-decoration:none;
}
.photo-tile img {
  width:100%;
  aspect-ratio:auto 3 / 4;
  height:auto;
  object-fit:cover;
  background:#edf5f2;
}
.photo-tile span {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
}
.photo-tile strong { color:var(--deep); font-size:.93rem; }
.photo-tile em {
  flex:0 0 auto;
  color:var(--teal);
  font:900 .72rem/1 "Inter",sans-serif;
  text-transform:uppercase;
  letter-spacing:.08em;
}
figure {
  margin:0;
  overflow:hidden;
  border-radius:8px;
  background:var(--white);
  border:1px solid var(--line);
}
figure img {
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
figcaption {
  display:grid;
  gap:6px;
  padding:12px;
}
figcaption strong { color:var(--deep); }
figcaption span { color:var(--muted); font-size:.92rem; }
.mapwrap {
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:var(--white);
}
.mapwrap iframe { width:100%; height:380px; border:0; display:block; }
.faq-list { display:grid; gap:12px; }
details {
  background:var(--white);
  border:1px solid var(--line);
  border-radius:8px;
  padding:16px 18px;
}
summary { cursor:pointer; font-weight:900; color:var(--deep); }
details p { color:var(--muted); margin-top:10px; }
.contact-grid {
  display:grid;
  grid-template-columns:1.05fr 1.05fr .9fr;
  gap:14px;
  align-items:start;
}
.contact-card {
  display:grid;
  gap:14px;
  align-content:start;
  min-height:100%;
  padding:20px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--white);
}
.contact-card.primary-contact { border-color:#8bbdb5; }
.contact-card.qr-contact {
  justify-items:center;
  text-align:center;
}
.contact-card.qr-contact p { max-width:310px; }
.contact-card-head {
  display:grid;
  gap:4px;
}
.contact-card.qr-contact .contact-card-head { justify-items:center; }
.contact-card-head span,
.channel-id span {
  color:var(--muted);
  font:900 .78rem/1.2 "Inter",sans-serif;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.contact-card-head strong {
  color:var(--deep);
  font-size:1.35rem;
  line-height:1.25;
}
.qr-image {
  justify-self:center;
  width:min(100%, 248px);
  object-fit:contain;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fbfdfc;
  padding:10px;
  box-shadow:0 10px 24px rgba(18,52,59,.07);
}
.qr-image.square { aspect-ratio:1/1; }
.qr-image.portrait {
  width:min(100%, 226px);
  aspect-ratio:3/4;
}
.contact-card p { color:var(--muted); }
.contact-actions {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  width:100%;
  max-width:300px;
}
.contact-actions .button { width:100%; }
.channel-id {
  display:grid;
  gap:4px;
  width:100%;
  max-width:300px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#f2faf8;
}
.channel-id strong {
  color:var(--deep);
  font:900 1.25rem/1.2 "Inter",sans-serif;
}
.contact-list {
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.contact-list li {
  padding:9px 11px;
  border:1px solid var(--line);
  border-radius:8px;
  color:var(--muted);
  background:#f8fbfa;
}
.final-cta {
  background:var(--deep);
  color:var(--white);
  border-radius:8px;
  padding:clamp(26px,5vw,42px);
  display:grid;
  grid-template-columns:1.1fr auto;
  align-items:center;
  gap:20px;
}
.final-cta h2 { color:var(--white); }
.final-cta p { color:#dff0ed; margin-top:8px; }
.note { color:#687779; font-size:.92rem; margin-top:14px; }
.sticky {
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:50;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  box-shadow:0 -8px 26px rgba(0,0,0,.18);
}
.sticky a {
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:var(--white);
  font-weight:900;
}
.sticky .call { background:var(--deep); }
.sticky .line { background:var(--line-green); }
.sticky .contact { background:var(--copper); }
.lang-block { display:none !important; }
body:not([data-lang]) .lang-th,
body[data-lang="th"] .lang-th,
body[data-lang="en"] .lang-en,
body[data-lang="zh"] .lang-zh { display:contents !important; }
@media (max-width:1120px) {
  .topbar { grid-template-columns:1fr auto; }
  .navlinks { grid-column:1/-1; order:3; }
  .proofgrid { grid-template-columns:repeat(3,1fr); }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .page-grid, .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .article-layout { grid-template-columns:1fr; }
  .article-side { position:static; grid-template-columns:repeat(2,1fr); }
  .photo-preview-grid { grid-template-columns:repeat(4,minmax(0,1fr)); }
}
@media (max-width:760px) {
  body { padding-bottom:68px; }
  .topbar { position:relative; gap:9px; padding:8px 14px; }
  .brandmark strong { font-size:.82rem; letter-spacing:.06em; }
  .brandmark span { max-width:190px; font-size:.68rem; }
  .langbar button { padding:5px 8px; }
  .navlinks {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:6px;
    overflow:visible;
  }
  .navlinks a {
    min-height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    white-space:normal;
    padding:6px 7px;
    font-size:.8rem;
    border-color:rgba(255,255,255,.18);
  }
  .hero {
    min-height:auto;
    padding:50px 16px 28px;
    background:
      linear-gradient(180deg, rgba(9,24,27,.86) 0%, rgba(9,24,27,.76) 52%, rgba(9,24,27,.92) 100%),
      var(--hero-image) center top / cover no-repeat;
  }
  h1 { font-size:1.62rem; line-height:1.14; }
  .hero-lead { font-size:.94rem; line-height:1.55; margin-top:12px; }
  .hero-facts { gap:6px; margin-top:14px; }
  .hero-facts span { font-size:.78rem; padding:5px 8px; }
  .cta-row { margin-top:16px; }
  .cta-row .button { width:100%; min-height:43px; padding:10px 14px; }
  .proofgrid { grid-template-columns:1fr 1fr; }
  .proofitem { min-height:82px; padding:14px 12px; }
  .proofitem strong { font-size:.96rem; }
  .band { padding:42px 16px; }
  .grid-2, .grid-3, .grid-4, .page-grid, .gallery-grid { grid-template-columns:1fr; }
  .article-photo img { aspect-ratio:4/3; }
  .article-side { grid-template-columns:1fr; }
  .article-takeaways,
  .article-note,
  .article-side-box { padding:15px; }
  .article-section h2 { font-size:1.18rem; }
  .contact-grid { grid-template-columns:1fr; }
  .contact-actions { grid-template-columns:1fr; }
  .contact-card { padding:18px; gap:12px; }
  .qr-image { width:min(100%, 226px); padding:8px; }
  .qr-image.portrait { width:min(100%, 210px); }
  .photo-overview-cta a {
    max-width:none;
    padding:12px;
  }
  .photo-overview-cta span {
    width:48px;
    height:48px;
  }
  .photo-preview-stack { gap:32px; }
  .preview-photo-section { scroll-margin-top:16px; }
  .photo-preview-head {
    grid-template-columns:1fr;
    gap:12px;
  }
  .photo-preview-head h2 { font-size:1.3rem; }
  .photo-section-cta {
    width:100%;
    min-width:0;
  }
  .photo-preview-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }
  .photo-preview-label {
    padding:24px 7px 7px;
  }
  .photo-preview-label strong { font-size:.72rem; }
  .photo-preview-label em { font-size:.58rem; }
  .photo-preview-overlay strong { font-size:1.65rem; }
  .photo-more-banner {
    align-items:flex-start;
    padding:12px;
  }
  .photo-more-banner strong {
    flex-basis:82px;
    line-height:1.2;
  }
  .photo-masonry { column-count:1; }
  .photo-section { scroll-margin-top:16px; }
  .photo-toolbar a { width:100%; justify-content:space-between; }
  .card { padding:18px; }
  .page-card { min-height:0; }
  .tablewrap { overflow:visible; border:0; background:transparent; }
  table, thead, tbody, tr, th, td { display:block; width:100%; }
  table { min-width:0; background:transparent; }
  thead { display:none; }
  tr {
    margin:0 0 10px;
    border:1px solid var(--line);
    border-radius:8px;
    overflow:hidden;
    background:var(--white);
  }
  td { padding:10px 12px; border:0; color:var(--muted); }
  td::before {
    content:attr(data-label);
    display:block;
    margin-bottom:3px;
    color:#7f9995;
    font:900 .7rem/1.2 "Inter",sans-serif;
    text-transform:uppercase;
    letter-spacing:.06em;
  }
  td:first-child { background:#f2faf8; color:var(--deep); font-weight:900; }
  td:first-child::before { display:none; }
  td + td { border-top:1px solid var(--line); }
  .route-pill { width:100%; }
  figure img { aspect-ratio:4/3; }
  .mapwrap iframe { height:320px; }
  .final-cta { grid-template-columns:1fr; }
  .sticky a { min-height:64px; font-size:.92rem; }
}
@media (max-width:340px) {
  .brandmark strong { font-size:.76rem; }
  .brandmark span { max-width:142px; }
  .langbar { gap:4px; }
  .langbar button { padding:5px 7px; }
  .navlinks { gap:5px; }
  .navlinks a { min-height:32px; padding:5px 5px; font-size:.72rem; }
  .qr-image { width:min(100%, 204px); }
  .qr-image.portrait { width:min(100%, 194px); }
}