/* iTour 新官網原型 — 共用樣式
   設計方向：乾淨、專業、可信賴。旅遊 × 企業服務。
   色系（2026-09-03 定案）：愛馬仕風 —— 品牌金橘 + 炭黑 + 米白。
   品牌金橘 = #F29802（取自 iTour logo）。深色區塊一律炭黑，底色偏米白暖調。 */

:root {
  --ink:      #221c16;   /* 暖調近黑：內文主色 */
  --ink-soft: #5f574c;   /* 暖灰：次要文字 */
  --teal:     #3b2d23;   /* （沿用變數名）暖咖啡棕：hero / band / footer（原炭黑改淺、改暖） */
  --teal-dk:  #2c2019;   /* 深咖啡棕：hero 漸層底 */
  --amber:    #f29802;   /* iTour 品牌金橘（logo 同色） */
  --amber-dk: #9c6109;   /* 深金橘：小字 / hover（通過 AA 對比） */
  --line:     #e7e0d2;   /* 米色分隔線 */
  --bg:       #fffdf8;   /* 暖白 */
  --bg-soft:  #f6efe1;   /* 米白：alt 區塊 */
  --bg-teal:  #2f2823;   /* （沿用變數名）暖炭黑 */
  --radius:   10px;
  --wrap:     1120px;
  --shadow:   0 2px 8px rgba(33,28,23,.06), 0 12px 32px rgba(33,28,23,.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", -apple-system,
               BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Noto Serif TC", "PingFang TC", "Microsoft JhengHei", Georgia, serif;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 700;
  text-wrap: balance;
  margin: 0 0 .6em;
}

h1 { font-size: 2.05rem; letter-spacing: .01em; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.18rem; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
/* 中文短語不要從中間斷行（重點詞、條列、表格、標籤、卡片標題都是短句，斷點只留在標點與空白） */
strong, b, li, td, th, .pill, .tag, .cat, .more, figcaption,
.card h3, .spear h3, .folio .item h3, .step h3, .tcard .who { word-break: keep-all; }

a { color: var(--amber-dk); text-decoration: none; }
a:hover { color: var(--teal-dk); text-decoration: underline; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,248,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.brand img {
  height: 46px;
  width: auto;
  display: block;
}
@media (max-width: 620px) {
  .brand img { height: 36px; }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.nav a {
  color: var(--ink-soft);
  font-size: .95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav a:hover,
.nav a.active {
  color: var(--teal-dk);
  border-bottom-color: var(--amber);
  text-decoration: none;
}
.nav .cta {
  background: var(--amber);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
}
.nav .cta:hover { background: #d98200; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .05s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--amber); color: var(--ink); }
.btn-primary:hover { background: #d98200; color: var(--ink); }
.btn-ghost { border-color: #fff; color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--teal-dk), var(--teal) 70%);
  color: #fff;
  padding: 82px 0 76px;
}
.hero h1 { color: #fff; max-width: 22ch; font-size: 2.25rem; line-height: 1.4; text-wrap: balance; }
.hero p.lead {
  font-size: 1.1rem;
  max-width: 42ch;
  color: rgba(255,255,255,.9);
  text-wrap: pretty;
}
.hero .hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .credibility {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.hero .credibility span { white-space: nowrap; }
.hero .credibility span::before { content: "\2713"; margin-right: 5px; color: var(--amber); font-weight: 700; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section.alt { background: var(--bg-soft); }
.section > .wrap > h2 { text-align: center; margin-bottom: .3em; }
.section-intro {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 48px;
  color: var(--ink-soft);
}
.eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--amber-dk);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- Pillars / cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--amber-dk); }
.card ul { padding-left: 1.1em; margin: 0 0 1em; color: var(--ink-soft); }
.card ul li { margin-bottom: .3em; }
.card .more { font-weight: 700; }

/* ---------- Placeholder blocks (照片/影片/社群 版位) ---------- */
.ph {
  border: 2px dashed #c9bfa9;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #f4efe3, #f4efe3 12px, #efe8d8 12px, #efe8d8 24px);
  color: #6b6253;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  font-size: .92rem;
  min-height: 180px;
}
.ph.tall { min-height: 300px; }
.ph strong { display: block; font-size: 1rem; color: var(--amber-dk); margin-bottom: 4px; }

/* ---------- Portfolio grid ---------- */
.folio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.folio .item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.folio .item .ph { min-height: 0; aspect-ratio: 3 / 2; border: none; border-radius: 0; border-bottom: 1px solid var(--line); }
.folio .item .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.folio .item .body { padding: 18px 20px 22px; }
.folio .item h3 { font-size: 1.05rem; margin-bottom: .3em; }
.folio .item .tag {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: .06em;
  background: var(--bg-soft);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
.folio .item p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps .step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  position: relative;
}
.steps .step::before {
  counter-increment: step;
  content: counter(step);
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  background: var(--amber);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.steps .step h3 { font-size: 1.05rem; margin-bottom: .3em; }
.steps .step p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Bridge band ---------- */
.band {
  background: var(--teal);
  color: #fff;
  padding: 60px 0;
}
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.85); max-width: 60ch; }

/* ---------- Prices / table ---------- */
table.price {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
table.price th, table.price td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
table.price th { background: var(--bg-soft); color: var(--ink); }
table.price tr:last-child td { border-bottom: none; }

/* ---------- Article ---------- */
.article { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.article .meta { color: var(--ink-soft); font-size: .9rem; margin-bottom: 8px; }
.article h1 { margin-bottom: .4em; }
.article h2 { margin-top: 1.6em; font-size: 1.35rem; }
.article blockquote {
  border-left: 4px solid var(--amber);
  margin: 1.4em 0;
  padding: .2em 0 .2em 1.2em;
  color: var(--ink-soft);
  font-style: italic;
}
.article .note {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--ink-soft);
}

/* ---------- Blog list ---------- */
.postlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.postlist .post {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.postlist .post .ph { min-height: 150px; border: none; border-radius: 0; }
.postlist .post .body { padding: 20px 22px 24px; }
.postlist .post .cat { font-size: .76rem; color: var(--amber-dk); font-weight: 700; letter-spacing: .08em; }
.postlist .post h3 { margin: 6px 0 .4em; font-size: 1.1rem; }
.postlist .post p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #cdc3ae;
  border-radius: 8px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 130px; resize: vertical; }
.consent { font-size: .86rem; color: var(--ink-soft); display: flex; gap: 8px; align-items: flex-start; }
.consent input { width: auto; margin-top: 5px; }

/* ---------- Contact channels (即時聯絡按鈕) ---------- */
.contact-channels { display: grid; gap: 12px; margin-top: 24px; }
.contact-channels .channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform .05s ease, border-color .15s ease;
}
.contact-channels .channel:hover { text-decoration: none; border-color: var(--amber); transform: translateY(-1px); }
.contact-channels .channel:active { transform: translateY(1px); }
.contact-channels .channel svg { width: 26px; height: 26px; flex-shrink: 0; }
.contact-channels .channel .txt { display: flex; flex-direction: column; line-height: 1.3; }
.contact-channels .channel .txt strong { font-size: 1rem; }
.contact-channels .channel .txt span { font-size: .86rem; color: var(--ink-soft); }
.channel-line svg { fill: #06C755; }
.channel-wa   svg { fill: #25D366; }
.channel-msg  svg { fill: #0866FF; }
.channel-tel  svg { fill: var(--amber-dk); }


/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal);
  color: rgba(255,255,255,.82);
  padding: 54px 0 34px;
  font-size: .9rem;
}
.site-footer a { color: #fff; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.site-footer h4 { color: #fff; font-size: 1rem; font-family: inherit; margin-bottom: .6em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .4em; }
.site-footer .foot-brand img { height: 42px; width: auto; margin-bottom: 14px; }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 18px;
  font-size: .82rem;
  color: rgba(255,255,255,.62);
}
.site-footer .legal p { margin: .25em 0; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s ease, border-color .15s ease;
}
.social-row a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  text-decoration: none;
}
.social-row svg { width: 18px; height: 18px; fill: currentColor; display: block; }
/* 淺色底（例如 contact 頁的 .card）內的社群圖示 */
.card .social-row a { color: var(--ink); border-color: var(--line); }
.card .social-row a:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }

/* ---------- Video embed (YouTube 16:9 RWD) ---------- */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.video-embed iframe,
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* 輕量 YouTube 嵌入：先縮圖、點擊才載入播放器（見 assets/site.js） */
.yt-lite {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000 center / cover no-repeat;
  cursor: pointer;
}
.yt-lite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35));
  transition: background .15s ease;
}
.yt-lite:hover::before { background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.15)); }
.yt-lite-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 50px;
  border-radius: 14px;
  background: var(--amber);
  box-shadow: 0 4px 18px rgba(0,0,0,.35);
  transition: transform .12s ease, background .12s ease;
}
.yt-lite:hover .yt-lite-play { transform: translate(-50%, -50%) scale(1.06); background: #d98200; }
.yt-lite-play::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #1c1c1c;
}
.yt-lite-fallback {
  position: absolute;
  right: 10px; bottom: 10px;
  z-index: 2;
  font-size: .78rem;
  color: #fff;
  background: rgba(0,0,0,.55);
  padding: 4px 10px;
  border-radius: 999px;
}
.yt-lite-fallback:hover { color: #fff; background: rgba(0,0,0,.75); text-decoration: none; }
.yt-lite-active { cursor: default; background: #000; }
.yt-lite-active::before, .yt-lite-active .yt-lite-play, .yt-lite-active .yt-lite-fallback { display: none; }
.yt-lite iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 尚未提供影片時的佔位提示；拿到影片就把整段換成 .video-embed > iframe */
.video-embed.pending {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,.9);
  background: linear-gradient(160deg, var(--teal-dk), var(--teal));
  padding: 28px;
  font-size: .95rem;
}
.video-embed.pending strong { display: block; color: #fff; font-size: 1.05rem; margin-bottom: 6px; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.pill {
  display: inline-block; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px 14px; font-size: .84rem; margin: 0 6px 8px 0; color: var(--ink-soft);
}
a.pill:hover {
  background: var(--amber); color: var(--ink); border-color: var(--amber); text-decoration: none;
}
.spear {
  background: #fff; border: 2px solid var(--amber); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.spear h3 { color: var(--amber-dk); }

/* ---------- Photo helpers ---------- */
.photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo.ratio-16x9 { aspect-ratio: 16 / 9; }
.photo.ratio-4x3  { aspect-ratio: 4 / 3; }
.photo.ratio-1x1  { aspect-ratio: 1 / 1; }
figure.photo { margin: 24px 0; }
figure.photo figcaption {
  padding: 8px 12px;
  font-size: .82rem;
  color: var(--ink-soft);
  background: #fff;
}

/* ---------- Prototype banner ---------- */
.proto-banner {
  background: #2b2b2b; color: #ffd9b0; text-align: center;
  font-size: .82rem; padding: 7px 16px; letter-spacing: .03em;
}

/* ---------- Gallery (辦公室實拍) ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.gallery figure.photo { margin: 0; }
@media (max-width: 620px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* ---------- Timeline (沿革) ---------- */
.timeline { margin: 32px 0 0; padding: 0; list-style: none; }
.timeline li { position: relative; padding: 0 0 22px 28px; border-left: 2px solid var(--line); }
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -7px; top: 3px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--amber);
}
.timeline b { display: block; color: var(--amber-dk); }
.timeline p { margin: 2px 0 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Itinerary (範例行程) ---------- */
.itin { margin: 32px 0 0; display: grid; gap: 14px; }
.itin .day {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px 16px 20px; border-left: 4px solid var(--amber);
}
.itin .day h4 { margin: 0 0 5px; color: var(--amber-dk); font-size: 1rem; }
.itin .day p { margin: 0; color: var(--ink-soft); font-size: .95rem; line-height: 1.7; }

/* ---------- Case cards (做過的團) ---------- */
.case .tag {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--amber-dk); background: #fbe9cd; border-radius: 999px;
  padding: 3px 12px; margin-bottom: 10px;
}
.case h3 { margin: 0 0 8px; }
.case p { margin: 0; }
.case p + p { margin-top: 10px; }

/* ---------- Pay steps (付款後流程) ---------- */
.paysteps { counter-reset: ps; margin: 32px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.paysteps li {
  position: relative; padding: 16px 18px 16px 58px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.paysteps li::before {
  counter-increment: ps; content: counter(ps);
  position: absolute; left: 14px; top: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--amber); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.paysteps li b { display: block; margin-bottom: 3px; }
.paysteps li .hl { color: var(--amber-dk); font-weight: 700; }
.callout {
  margin-top: 20px; padding: 16px 18px; border-radius: var(--radius);
  background: #fff4e0; border: 1px solid #f3d9a8; color: #6b4d1e;
  font-size: .95rem; line-height: 1.7;
}
.callout strong { color: #6b4d1e; }

/* ---------- Proof strip (口碑) ---------- */
.proof-strip { background: var(--teal); color: #fff; }
.proof-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center;
  gap: 16px 36px; padding: 20px 0;
}
.proof-item { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
.proof-item .score { font-size: 1.7rem; font-weight: 800; color: #ffb877; line-height: 1.1; }
.proof-item .label { font-size: .86rem; color: rgba(255,255,255,.82); }
.proof-item a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.proof-sep { width: 1px; background: rgba(255,255,255,.18); }

/* ---------- Testimonials (客戶怎麼說) ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; display: flex; flex-direction: column; gap: 12px;
}
.tcard .stars { color: #f5a623; letter-spacing: 2px; font-size: .95rem; }
.tcard blockquote { margin: 0; font-size: .95rem; line-height: 1.75; color: var(--ink); }
.tcard .who { margin-top: auto; font-size: .85rem; color: var(--ink-soft); line-height: 1.5; }
.tcard .who b { color: var(--ink); font-weight: 700; }
.tcard .who .src { font-size: .78rem; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .testi-grid { grid-template-columns: 1fr; } .proof-sep { display: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .folio, .steps { grid-template-columns: repeat(2, 1fr); }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 1.85rem; }
  .hero h1 { font-size: 1.95rem; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .folio, .steps, .postlist, .form-grid,
  .site-footer .cols { grid-template-columns: 1fr; }
  .nav { display: none; }
  .hero { padding: 60px 0 54px; }
  .section { padding: 52px 0; }
}
