:root {
  --navy: #0b1c2e;
  --navy-2: #13283f;
  --navy-deep: #061018;
  --brass: #c4a36a;
  --brass-2: #d8bc8a;
  --paper: #e7edf3;
  --paper-2: #f4f6f8;
  --ink: #15202b;
  --muted: #5c6c7a;
  --line: rgba(11, 28, 46, .12);
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --header-h: 78px;
  --inner: min(1180px, calc(100% - 56px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: block !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.inner { width: var(--inner); margin: 0 auto; }
.ico { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ico-sm { width: 15px; height: 15px; }

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* —— Header —— */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  color: #fff;
  transition: background .35s ease, box-shadow .35s ease, color .35s ease;
}
.site-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header .brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .04em;
  flex-shrink: 0;
  line-height: 1.2;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px 22px;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  opacity: .78;
  padding: 6px 0;
  transition: opacity .2s;
}
.site-nav a:hover, .site-nav a.on { opacity: 1; }
.site-nav a.on::after,
.site-nav a:hover::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brass);
  transform: scaleX(1);
}
.site-nav a:not(.on)::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--brass); border-color: var(--brass); color: var(--navy-deep); }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: 0; background: transparent; color: inherit;
  cursor: pointer; align-items: center; justify-content: center;
  position: relative;
  z-index: 62;
}

body:not(.is-home) .site-header,
.site-header.is-solid {
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 26px;
  background: var(--brass);
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  border: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--brass-2); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.38);
}
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media, .mast-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img, .mast-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: ken 18s ease-out forwards;
}
.hero-media.slides img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: none;
  transform: none;
  transition: opacity 1.1s ease;
}
.hero-media.slides img.is-on {
  opacity: 1;
  animation: ken 18s ease-out forwards;
}
.hero-scrim, .mast-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,16,24,.28) 0%, rgba(6,16,24,.18) 32%, rgba(6,16,24,.72) 100%),
    linear-gradient(90deg, rgba(6,16,24,.55) 0%, rgba(6,16,24,.12) 58%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 0 92px;
  max-width: 760px;
  margin-left: calc((100% - var(--inner)) / 2);
  width: var(--inner);
}
.hero-brand {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(42px, 6.4vw, 76px);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.12;
}
.hero-lead {
  margin: 0 0 36px;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,.78);
}
.hero-brand, .hero-lead, .hero .btn {
  opacity: 0;
  transform: translateY(22px);
  animation: rise .9s ease forwards;
}
.hero-lead { animation-delay: .16s; }
.hero .btn { animation-delay: .32s; }

@keyframes ken {
  to { transform: scale(1); }
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* —— Mast (inner pages) —— */
.mast {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.mast-inner {
  position: relative; z-index: 2;
  padding: 0 0 56px;
}
.mast-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--brass);
  font-weight: 500;
}
.mast h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.2;
  max-width: 16em;
}

/* —— Sections —— */
.section { padding: 88px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.section-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--brass);
  font-weight: 500;
}
.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .03em;
}
.section-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--muted);
  flex-shrink: 0;
}
.section-more:hover { color: var(--navy); }

.intro-sec { background: #fff; }

/* subtle rule between about and news */
.intro-sec + .section {
  position: relative;
}
.intro-sec + .section::before {
  content: "";
  position: absolute;
  left: max(28px, calc((100% - var(--inner)) / 2));
  right: max(28px, calc((100% - var(--inner)) / 2));
  top: 0;
  height: 1px;
  background: var(--line);
}

/* intro: image + copy, same inner width as news */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px 64px;
  align-items: center;
}
.intro-visual {
  min-height: 360px;
  overflow: hidden;
  background: #d5dde6;
}
.intro-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}
.intro-copy {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.intro-copy .prose { max-width: none; margin-top: 22px; }
.intro-copy .btn { align-self: flex-start; margin-top: 28px; }

.prose, .rich-content {
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.join-cta { margin: 36px 0 0; }
.prose p, .rich-content p { margin: 0 0 1.15em; }
.prose p:last-child, .rich-content p:last-child { margin-bottom: 0; }
.rich-content h2, .rich-content h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin: 1.6em 0 .6em;
  font-weight: 600;
}
.rich-content h2 { font-size: 1.45em; }
.rich-content h3 { font-size: 1.18em; }
.rich-content ul, .rich-content ol { margin: 0 0 1.2em; padding-left: 1.2em; }
.rich-content li { margin: .35em 0; }
.rich-content img { margin: 1.4em 0; }
.rich-content figure,
.content-photo {
  margin: 1.6em 0 1.8em;
}
.content-photo img,
.rich-content figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  margin: 0;
}
.rich-content a { color: var(--navy); border-bottom: 1px solid var(--brass); }

/* —— News list (editorial, no cards) —— */
.news-lines { border-top: 1px solid var(--line); }
.news-line {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.news-line:hover { background: rgba(255,255,255,.45); }
.news-line .when {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--muted);
  letter-spacing: .04em;
  padding-top: 4px;
}
.news-line h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
  line-height: 1.35;
}
.news-line p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-line .go {
  width: 36px; height: 36px;
  margin-top: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
  transition: transform .25s ease;
}
.news-line:hover .go { transform: translateX(6px); }
.news-line .thumb {
  width: 120px; height: 80px;
  object-fit: cover;
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
}
.news-line.has-thumb {
  grid-template-columns: 108px minmax(0, 1fr) 120px 36px;
}
.news-line.has-thumb .go { grid-column: 4; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-tile {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.product-tile:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  color: inherit;
}
.product-tile-media {
  margin: 0;
  background: #d5dde6;
  overflow: hidden;
}
.product-tile-media img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-tile:hover .product-tile-media img { transform: scale(1.04); }
.product-tile-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 22px;
}
.product-tile-body h2 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: .02em;
}
.product-tile-body p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--brass);
  font-size: 13px;
  letter-spacing: .04em;
}

.empty {
  padding: 48px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* —— Contact band —— */
.band {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
}
.band .section-title { color: #fff; }
.band-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
}
.contact-bits {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.contact-bit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
}
.contact-bit .ico { color: var(--brass); margin-top: 3px; }
.contact-bit a:hover { color: #fff; }

/* homepage contact: labeled cells */
.home-contact {
  position: relative;
  background: var(--paper-2);
}
.home-contact::before {
  content: "";
  position: absolute;
  left: max(28px, calc((100% - var(--inner)) / 2));
  right: max(28px, calc((100% - var(--inner)) / 2));
  top: 0;
  height: 1px;
  background: var(--line);
}
.home-contact .section-head { align-items: center; }
.home-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}
.home-contact-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 26px 24px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}
.home-contact-cell .ico { color: var(--brass); }
.home-contact-cell .k {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--muted);
}
.home-contact-cell .v {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
  overflow-wrap: anywhere;
}
a.home-contact-cell:hover .v { color: var(--brass); }

/* —— Page body —— */
.page-wrap { padding: 56px 0 96px; }
.measure {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.page-wide {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}
.mast-tall { min-height: 52vh; }
.page-split-sec {
  padding: 72px 0 48px;
  background: var(--paper-2);
}
.page-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .78fr);
  gap: 48px 72px;
  align-items: start;
}
.page-split-copy .section-kicker { margin-bottom: 10px; }
.page-split-copy .rich-content { font-size: 16.5px; }
.vis-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
.page-split-visual {
  display: grid;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 28px);
}
.page-split-visual figure,
.page-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #d5dde6;
}
.page-split-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.page-split-visual figure:nth-child(2) img { height: 260px; }
.page-gallery-sec { padding: 8px 0 104px; background: var(--paper-2); }
.page-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.page-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.page-gallery figure:first-child img { height: 420px; }

.join-action {
  margin: 36px 0 0;
}
.article-wrap {
  padding: 56px 0 96px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 13px;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-cover { margin: 0 0 36px; }
.article-cover img { width: 100%; max-height: 420px; object-fit: cover; }
.article-sub {
  margin: -8px 0 24px;
  color: var(--muted);
  font-size: 16px;
}

.related { margin-top: 64px; padding-top: 36px; border-top: 1px solid var(--line); }
.related h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
}
.related a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.related a:hover { color: var(--navy); }
.related a span { color: var(--muted); font-size: 13px; flex-shrink: 0; }

/* —— Contact page —— */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}
.about-wrap { overflow: auto; }
.about-wrap .about-photo {
  float: right;
  width: min(420px, 46%);
  margin: 6px 0 28px 40px;
}
.about-wrap .about-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.contact-side .contact-bit { color: var(--ink); }
.contact-side .contact-bit .ico { color: var(--navy); }

.story-line {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.story-line .when {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--muted);
  letter-spacing: .04em;
  padding-top: 6px;
}
.story-line h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
  line-height: 1.35;
}
.story-line p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.faq-lead { margin: 0 0 40px; max-width: none; }
.faq-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-card {
  display: flex;
  flex-direction: column;
  min-height: 196px;
  padding: 28px 28px 24px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.faq-card:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
  color: inherit;
}
.faq-mark {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--brass);
  font-weight: 500;
}
.faq-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: .02em;
}
.faq-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}
.faq-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--brass);
  font-size: 13px;
  letter-spacing: .04em;
}
.faq-crumb {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}
.faq-crumb a { color: var(--navy); }
.faq-crumb span { margin: 0 8px; color: var(--line-2, #c9d0d8); }
.faq-more-list {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.faq-more-list h2 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
}
.faq-more-list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 17px;
}
.faq-more-list a:hover { color: var(--navy); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 36px;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker { display: none; }
.faq-item summary .when {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--muted);
  letter-spacing: .04em;
  padding-top: 4px;
}
.faq-item summary h3,
.faq-item summary .q {
  display: block;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
  line-height: 1.35;
}
.faq-item summary .go {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
  transition: transform .25s ease;
}
.faq-item[open] summary .go { transform: rotate(90deg); }
.faq-item summary:hover h3,
.faq-item summary:hover .q { color: var(--navy-2); }
.faq-body {
  padding: 0 36px 28px 136px;
  max-width: 52em;
}
.c-form {
  background: var(--paper-2);
  padding: 36px 36px 28px;
  border-top: 2px solid var(--navy);
}
.c-form .row { margin-bottom: 22px; }
.c-form label {
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 8px;
}
.c-form label .req { color: #9b2c2c; }
.c-form input, .c-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 8px 0 10px;
  outline: none;
  border-radius: 0;
}
.c-form textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.c-form input:focus, .c-form textarea:focus { border-bottom-color: var(--navy); }
.c-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.c-form .btn { margin-top: 8px; }
.c-form .btn:disabled { opacity: .55; cursor: wait; }
.map-frame {
  margin-top: 40px;
}
.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* —— Pager —— */
.pager { margin-top: 40px; }
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination .page-item .page-link,
.pagination li a,
.pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  color: var(--navy);
  border: 1px solid var(--line);
  background: transparent;
}
.pagination .active .page-link,
.pagination li.active span,
.pagination .active span {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.pagination .disabled span { opacity: .35; }

/* —— Footer —— */
.site-footer {
  display: block;
  width: 100%;
  clear: both;
  background: var(--navy-deep);
  color: rgba(255,255,255,.68);
  padding: 72px 0 32px;
  font-size: 13.5px;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 1.05fr) minmax(220px, 1fr);
  gap: 40px 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(196, 163, 106, .18);
  align-items: start;
}
.foot-brand {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #fff;
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: .03em;
}
.foot-grid p { margin: 0; line-height: 1.85; max-width: 28em; color: rgba(255,255,255,.58); }
.foot-grid h4 {
  margin: 4px 0 18px;
  color: var(--brass);
  font-size: 12px;
  letter-spacing: .2em;
  font-weight: 500;
}
.foot-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 10px;
}
.foot-nav a {
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}
.foot-grid a:hover { color: #fff; }
.foot-bits { display: grid; gap: 10px; }
.foot-bits span, .foot-bits a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.foot-bits .ico { color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  color: rgba(255,255,255,.4);
}
.friend-links a { margin-right: 14px; }
.friend-links a:hover { color: #fff; }

/* —— Toast —— */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  z-index: 70;
  transition: opacity .25s, transform .25s;
}
.toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* —— Reveal —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].in { opacity: 1; transform: none; }

/* —— Drawer —— */
.nav-mask {
  display: none;
  position: fixed; inset: 0;
  background: rgba(6,16,24,.46);
  z-index: 55;
}
body.nav-open .nav-mask { display: block; }

@media (max-width: 1100px) {
  .page-wide { width: min(1180px, calc(100% - 40px)); }
  .page-split { grid-template-columns: 1fr; gap: 28px; }
  .page-split-visual {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .page-split-visual img,
  .page-split-visual figure:nth-child(2) img { height: 240px; }
  .page-gallery { grid-template-columns: 1fr 1fr; }
  .page-gallery figure:first-child { grid-column: 1 / -1; }
  .page-gallery img,
  .page-gallery figure:first-child img { height: 260px; }
}
@media (max-width: 960px) {
  :root { --inner: min(1180px, calc(100% - 36px)); }
  .intro { grid-template-columns: 1fr; gap: 28px; }
  .intro-visual { min-height: 240px; }
  .intro-visual img { min-height: 240px; }
  .intro-copy { padding: 0; }
  .band-grid, .contact-layout, .foot-grid { grid-template-columns: 1fr; }
  .home-contact-grid { grid-template-columns: 1fr 1fr; }
  .faq-board, .product-grid { grid-template-columns: 1fr; }
  .news-line, .news-line.has-thumb, .story-line, .faq-item summary {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .news-line .go, .news-line .thumb, .faq-item summary .go { display: none; }
  .faq-body { padding: 0 0 24px; }
  .hero-inner { padding-bottom: 72px; }
}

@media (max-width: 780px) {
  .page-wide { width: calc(100% - 32px); }
  .page-split-sec { padding: 40px 0 24px; }
  .about-wrap .about-photo {
    float: none;
    width: 100%;
    margin: 0 0 24px;
  }
  .about-wrap .about-photo img { height: 220px; }
  .page-split-visual { grid-template-columns: 1fr; }
  .page-gallery { grid-template-columns: 1fr; }
  .page-gallery figure:first-child { grid-column: auto; }
  .page-gallery-sec { padding-bottom: 64px; }
  .mast-tall { min-height: 38vh; }
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  body.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 86vw);
    background: var(--navy);
    padding: 88px 28px 32px;
    gap: 4px;
    z-index: 60;
    margin: 0;
    overflow: auto;
  }
  body.nav-open .site-nav a { font-size: 18px; padding: 10px 0; opacity: .9; }
  body.nav-open .header-cta {
    display: inline-flex;
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 61;
    background: var(--brass);
    color: var(--navy-deep);
    border-color: var(--brass);
  }
  .c-pair { grid-template-columns: 1fr; }
  .mast { min-height: 34vh; }
  .hero-brand { font-size: 40px; }
  .c-form { padding: 28px 20px 22px; }
  .home-contact-grid { grid-template-columns: 1fr; }
  .home-contact .section-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img, .mast-media img { animation: none; transform: none; }
  .hero-brand, .hero-lead, .hero .btn,
  [data-reveal] {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.85em;
}
.lang-switch a { text-decoration: none; color: inherit; }
.lang-switch a.on { font-weight: 600; text-decoration: underline; }
.lang-switch span { opacity: 0.5; }

.product-price{font-weight:600;opacity:.9}
