/* =========================================================
   Duli Beach Land — style.css
   Layout language inspired by the Zurf (Goodlayers) scuba demo:
   full-bleed hero, pill buttons, kicker headings, icon grid,
   parallax band, image cards, counters, dark widget footer.
   Zero build step. Only external asset: Google Font (DM Sans).
   ========================================================= */

:root {
  /* palette */
  --deep:      #07303f;   /* dark navy-teal bands */
  --deep-2:    #0d4152;
  --sea:       #1a7f9e;
  --accent:    #f0924f;   /* peach accent (template #f6a46a family) */
  --accent-dk: #e07a35;
  --accent-lt: #fbd9bd;
  --green:     #48bf84;
  --ink:       #1c2b33;
  --gray:      #556575;   /* template body grey */
  --line:      #e7e7e7;
  --sand:      #faf7f1;
  --white:     #ffffff;

  --radius:    8px;
  --radius-lg: 14px;
  --shadow-sm: 0 4px 18px rgba(7, 48, 63, .07);
  --shadow:    0 14px 44px rgba(7, 48, 63, .11);
  --maxw:      1200px;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Merriweather", Georgia, "Times New Roman", serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea); text-decoration: none; }
a:hover { color: var(--accent-dk); }
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 700; line-height: 1.18; letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.05rem, 1.9vw, 1.3rem); }
p { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.05em; padding-left: 1.2em; }
li { margin-bottom: .4em; }
strong { font-weight: 700; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.narrow { max-width: 760px; }
section { padding: 96px 0; }
section.tight { padding: 58px 0; }
section.compact { padding: 72px 0; }
.bg-sand { background: var(--sand); }
.bg-deep { background: var(--deep); color: #dce9ef; }
.bg-deep h2, .bg-deep h3 { color: #fff; }
.bg-deep a { color: var(--accent-lt); }
.center { text-align: center; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--accent); color: #fff; padding: 10px 16px; z-index: 999; }
.skip:focus { left: 8px; top: 8px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem; letter-spacing: -.02em;
  color: #fff;
}
.brand .mark {
  width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center;
  color: #fff; font-size: 15px;
}
.brand small { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; opacity: .75; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px; font-size: .92rem; font-weight: 600;
  color: rgba(255,255,255,.88); border-radius: var(--radius);
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,.12); }
.nav .nav-cta {
  margin-left: 10px; padding: 11px 20px; border-radius: 999px;
  background: var(--accent); color: #fff;
}
.nav .nav-cta:hover { background: var(--accent-dk); color: #fff; }
.nav-toggle {
  display: none; background: rgba(255,255,255,.12); border: 0;
  border-radius: var(--radius); padding: 9px 12px; font-size: 1.05rem;
  cursor: pointer; color: #fff; line-height: 1;
}
.site-header.stuck {
  background: rgba(7, 48, 63, .96);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(8px);
}

/* ---------- language switcher (dropdown) ---------- */
.site-header .inner { display: flex; align-items: center; }
.brand { order: 1; margin-right: auto; }
.nav { order: 2; }
.lang { order: 3; position: relative; margin-left: 12px; }
.nav-toggle { order: 4; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff;
  font: inherit; font-size: .84rem; font-weight: 700; line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  transition: background .18s ease;
}
.lang-btn:hover { background: rgba(255,255,255,.24); }
.lang-btn .globe { font-size: .95rem; line-height: 1; }
.lang-btn::after {
  content: ""; width: 6px; height: 6px; margin-left: 2px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}
.lang-list {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 300;
  min-width: 168px; padding: 6px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 18px 44px rgba(7,48,63,.22);
  display: none;
}
.lang.open .lang-list { display: block; }
.lang-list a {
  display: block; padding: 11px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 600; color: var(--deep); white-space: nowrap;
}
.lang-list a:hover { background: var(--sand); color: var(--deep); }
.lang-list a.on { background: var(--sand); color: var(--accent-dk); }

@media (max-width: 940px) {
  .site-header .inner { gap: 10px; }
  .lang { margin-left: 0; }
  .lang-btn { padding: 9px 12px; }
  .lang-list { min-width: 156px; }
}
/* ---------- CJK font stacks ---------- */
html[lang="ja"] body {
  font-family: "DM Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
               "Yu Gothic", "Noto Sans JP", Meiryo, system-ui, sans-serif;
}
html[lang="ko"] body {
  font-family: "DM Sans", "Apple SD Gothic Neo", "Malgun Gothic",
               "Noto Sans KR", system-ui, sans-serif;
}
html[lang="zh-Hans"] body {
  font-family: "DM Sans", "PingFang SC", "Microsoft YaHei",
               "Noto Sans SC", "Hiragino Sans GB", system-ui, sans-serif;
}
html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3,
html[lang="ko"] h1, html[lang="ko"] h2, html[lang="ko"] h3,
html[lang="zh-Hans"] h1, html[lang="zh-Hans"] h2, html[lang="zh-Hans"] h3 {
  letter-spacing: 0;
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: center;
  background: var(--deep); color: #fff; overflow: hidden;
  padding: 150px 0 110px;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,36,48,.88) 0%, rgba(5,36,48,.62) 45%, rgba(5,36,48,.24) 100%);
}
.hero .inner { position: relative; z-index: 2; width: 100%; }
.hero .kicker {
  display: inline-block; font-size: .76rem; letter-spacing: .22em; font-weight: 700;
  text-transform: uppercase; color: var(--accent-lt); margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: .45em; max-width: 17ch; }
.hero .lede { font-size: clamp(1rem, 1.7vw, 1.15rem); color: #d7e6ec; max-width: 50ch; margin-bottom: 2em; }
.hero .btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-dots { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); display: flex; gap: 9px; z-index: 3; }
.hero-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); }
.hero-dots i.on { background: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: .9rem; letter-spacing: .02em;
  border: 0; cursor: pointer; line-height: 1;
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dk); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-dark { background: var(--deep); color: #fff; }
.btn-dark:hover { background: var(--deep-2); color: #fff; transform: translateY(-2px); }
.btn-plain { background: rgba(7,48,63,.06); color: var(--deep); }
.btn-plain:hover { background: rgba(7,48,63,.12); color: var(--deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row.center { justify-content: center; }
.btn-link { font-weight: 700; font-size: .9rem; color: var(--sea); }
.btn-link::after { content: " →"; }

/* ---------- over-hero figure card ---------- */
.figcard {
  position: relative; z-index: 5;
  margin-top: -74px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 34px 34px 26px;
}
.figcard .grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 26px; }
.figcard .fig { border-left: 2px solid var(--accent-lt); padding-left: 18px; }
.figcard .v { display: block; font-size: clamp(1.35rem, 2.4vw, 1.85rem); font-weight: 800; color: var(--deep); letter-spacing: -.02em; line-height: 1.15; }
.figcard .l { display: block; font-size: .78rem; font-weight: 600; color: var(--gray); margin-top: 6px; }
.figcard .stats-note { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--gray); }
@media (max-width: 860px) {
  .figcard { margin-top: -46px; padding: 26px 22px 20px; }
  .figcard .grid4 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ---------- section heading ---------- */
.sec-head { margin-bottom: 48px; max-width: 760px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .kicker {
  display: block; font-size: .76rem; letter-spacing: .2em; font-weight: 700;
  text-transform: uppercase; color: var(--accent-dk); margin-bottom: 14px;
}
.sec-head h2 { margin-bottom: .35em; }
.sec-head p { color: var(--gray); margin: 0; }
.bg-deep .sec-head .kicker, .band .sec-head .kicker { color: var(--accent-lt); }
.bg-deep .sec-head p, .band .sec-head p { color: #c6dbe3; }

/* ---------- icon grid ---------- */
.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.icon-grid.three { grid-template-columns: repeat(3, 1fr); }
.icon-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 26px; text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.icon-card .ic {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  background: rgba(240,146,79,.12); color: var(--accent-dk);
  display: grid; place-items: center;
}
.icon-card .ic svg { width: 28px; height: 28px; }
.icon-card h3 { margin-bottom: .4em; color: var(--deep); }
.icon-card p { margin: 0; font-size: .93rem; color: var(--gray); }
@media (max-width: 1000px) { .icon-grid, .icon-grid.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .icon-grid, .icon-grid.three { grid-template-columns: 1fr; } }

/* ---------- split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.split-body h2 { margin-bottom: .45em; }
.split-body > p { color: var(--gray); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.rev .split-media { order: 0; }
}

/* ---------- check list ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 26px; }
.check-list li {
  position: relative; padding-left: 34px; margin-bottom: 14px;
  font-size: .98rem; color: var(--ink);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(72,191,132,.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f9c68' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}
.check-list small { display: block; color: var(--gray); font-size: .84rem; }

/* ---------- table ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 6px 26px; }
table { width: 100%; border-collapse: collapse; font-size: .96rem; min-width: 380px; }
th, td { padding: 16px 4px; text-align: left; border-bottom: 1px solid var(--line); }
th { font-size: .72rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .14em; }
tbody tr:last-child td { border-bottom: 0; }
td:last-child { text-align: right; }
td strong { color: var(--deep); }
td small { display: block; color: var(--gray); font-size: .78rem; font-weight: 500; }

/* ---------- table on small screens: stack label + value ---------- */
@media (max-width: 680px) {
  .table-wrap { padding: 4px 18px; }
  table { min-width: 0; font-size: .95rem; }
  table thead { display: none; }
  table tbody tr { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
  table tbody tr:last-child { border-bottom: 0; }
  table td { display: block; width: auto; padding: 0; border: 0; text-align: left; }
  table td:first-child {
    font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gray); margin-bottom: 5px;
  }
  table td:last-child { text-align: left; font-size: 1.05rem; }
  table td small { font-size: .8rem; }
}

/* ---------- band (parallax CTA) ---------- */
.band {
  position: relative; color: #fff; padding: 130px 0;
  background-color: var(--deep); background-size: cover; background-position: center;
  background-attachment: fixed;
}
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,36,48,.86), rgba(5,36,48,.55));
}
.band .inner { position: relative; z-index: 2; max-width: 720px; }
.band h2 { color: #fff; }
.band p { color: #d3e3ea; }
@media (max-width: 900px) { .band { background-attachment: scroll; padding: 90px 0; } }

/* ---------- cards (image top) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .thumb { overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .thumb img { transform: scale(1.06); }
.card .body { padding: 24px 24px 26px; }
.card .meta { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dk); }
.card h3 { margin: .5em 0 .4em; color: var(--deep); }
.card p { margin: 0; font-size: .92rem; color: var(--gray); }
.card .credit { margin-top: 14px; font-size: .74rem; color: var(--gray); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

/* ---------- counters ---------- */
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.counters .v { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1; }
.counters .l { display: block; margin-top: 12px; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #a9c6d2; }
@media (max-width: 800px) { .counters { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; } }

/* ---------- note / alert ---------- */
.alert, .note {
  padding: 20px 24px; border-radius: var(--radius-lg);
  background: var(--sand); border: 1px solid var(--line);
  font-size: .93rem; color: #45545e; margin: 0;
}
.alert { border-left: 3px solid var(--accent); }
.note { border-left: 3px solid var(--sea); background: #f4fafc; }
.alert p, .note p { margin: 0 0 .6em; }
.alert p:last-child, .note p:last-child { margin: 0; }
.alert strong, .note strong { color: var(--ink); }

/* ---------- FAQ (native details/summary) ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  position: relative; cursor: pointer; list-style: none;
  padding: 20px 44px 20px 0;
  font-weight: 700; color: var(--deep); font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--accent-dk);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--accent-dk); }
.faq-item p {
  margin: 0 0 20px; padding-right: 40px;
  color: var(--gray); font-size: .95rem;
}

/* ---------- map + facts ---------- */
.map-figure { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #eaf6fa; }
.map-figure svg { display: block; width: 100%; height: auto; }
.map-figure figcaption { background: #fff; color: var(--gray); padding: 16px 20px; font-size: .8rem; margin: 0; }
.facts { margin: 0; }
.fact { display: flex; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.fact:last-child { border-bottom: 0; }
.fact dt { font-size: .9rem; color: var(--gray); margin: 0; }
.fact dd { margin: 0; font-weight: 700; color: var(--deep); text-align: right; }
.fact dd small { display: block; font-weight: 500; color: var(--gray); font-size: .78rem; }

/* ---------- contact card ---------- */
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 28px 32px; text-align: left;
}
.contact-card .row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line);
}
.contact-card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-card .row:first-child { padding-top: 0; }
.contact-card .k {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gray);
}
.contact-card .v { font-weight: 700; font-size: 1.08rem; color: var(--deep); text-align: right; }
.contact-card .v:hover { color: var(--accent-dk); }
.contact-card .v small { display: block; font-weight: 500; font-size: .8rem; color: var(--gray); }
@media (max-width: 520px) {
  .contact-card { padding: 22px 20px; }
  .contact-card .row { flex-direction: column; gap: 4px; }
  .contact-card .v { text-align: left; }
}

/* ---------- page head (inner pages) ---------- */
.page-head { position: relative; background: var(--deep); color: #fff; padding: 170px 0 90px; overflow: hidden; }
.page-head.bgimg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,36,48,.85), rgba(5,36,48,.5)); }
.page-head .inner { position: relative; z-index: 2; }
.page-head h1 { color: #fff; margin-bottom: .3em; }
.page-head p { color: #cee0e7; margin: 0; max-width: 62ch; }
.crumbs { font-size: .8rem; color: var(--accent-lt); margin-bottom: 16px; letter-spacing: .04em; }
.crumbs a { color: var(--accent-lt); }
.meta-line { font-size: .8rem; color: var(--gray); margin-top: 16px; }
.pull {
  border-left: 2px solid var(--accent); padding: 4px 0 4px 22px;
  font-family: var(--font-serif); font-style: italic; font-size: 1.15rem;
  color: var(--deep); margin: 0 0 26px;
}

/* ---------- gallery grid (scenery) ---------- */
.gallery { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
figure { margin: 0; }
figure img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4 / 3; object-fit: cover; background: var(--sand); }
figcaption { font-size: .78rem; color: var(--gray); margin-top: 10px; line-height: 1.55; }

/* ---------- entry cards (404) ---------- */
.entry {
  display: block; padding: 30px 26px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.entry:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: var(--ink); }
.entry .ico { display: block; font-size: 1.6rem; margin-bottom: 12px; }
.entry h3 { color: var(--deep); margin-bottom: .3em; }
.entry p { font-size: .92rem; color: var(--gray); margin: 0; }

/* ---------- small-screen safeguards ---------- */
.figcard .v, table td, .check-list li, .fact dd { overflow-wrap: anywhere; }
@media (max-width: 480px) {
  .figcard .grid4 { gap: 16px; }
  .figcard .v { font-size: 1.12rem; }
  .figcard .l { font-size: .72rem; }
  .hero h1 { font-size: clamp(1.85rem, 8.4vw, 2.6rem); }
  .sec-head h2 { font-size: clamp(1.45rem, 6.4vw, 2rem); }
  .counters .v { font-size: 1.9rem; }
  .table-wrap { padding: 4px 16px; }
}

/* ---------- footer ---------- */
.site-footer { background: var(--deep); color: #a9c6d2; padding: 80px 0 30px; font-size: .9rem; }
.site-footer h4 { color: #fff; font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 18px; }
.site-footer a { color: #a9c6d2; }
.site-footer a:hover { color: var(--accent); }
.foot-grid { display: grid; gap: 40px; grid-template-columns: 1.4fr 1fr 1fr 1fr; margin-bottom: 50px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid .foot-about p { color: #8fb0bc; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px; font-size: .78rem; color: #86a7b3; line-height: 1.7; }
.foot-bottom p { margin: 0 0 .55em; }
.disclaimer {
  background: rgba(255,255,255,.05); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 20px; color: #97b7c3;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- nav (mobile) ---------- */
@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--deep); padding: 10px 26px 20px; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; }
  .nav .nav-cta { margin: 14px 0 0; text-align: center; border-radius: 999px; }
}
@media (max-width: 640px) {
  section { padding: 68px 0; }
  .hero { min-height: 78vh; padding: 130px 0 90px; }
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .icon-card:hover, .btn:hover, .entry:hover { transform: none; }
  .band { background-attachment: scroll; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .site-footer, .hero::after, .band::after { display: none; }
  .hero, .band, .page-head { color: #000; background: #fff; min-height: auto; padding: 20px 0; }
}
