/*
Theme Name: sanko-theme
Theme URI: https://example.com
Author: Your Name
Description: 三光商事株式会社 コーポレートサイトテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: sanko-theme
*/

:root {
  --navy:      #0B2545;
  --blue:      #1A5FA8;
  --blue-lt:   #3B82C4;
  --sky:       #D6E9F8;
  --sky-pale:  #EDF5FC;
  --lavender:  #E8EEF8;
  --white:     #FFFFFF;
  --ink:       #0D1E33;
  --ink-mid:   #4A6278;
  --ink-light: #304456;
  --border:    rgba(26,95,168,.12);

  --ff-serif: 'Noto Sans JP', sans-serif;
  --ff-sans:  'Noto Sans JP', sans-serif;
  --ff-cond:  'Noto Sans JP', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; max-width: 100%; overflow-x: hidden; }
body { font-family: var(--ff-sans); background: var(--white); color: var(--ink); width: 100%; max-width: 100%; overflow-x: hidden; }

/* ══════════════════════
   NAV
══════════════════════ */
#nav {
  position: fixed; inset: 0 0 auto; z-index: 999;
  height: 60px;
  width: 100%;
  max-width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.8rem;
  background: rgba(255,255,255,0);
  transition: background .35s, box-shadow .35s;
}
#nav.solid { background: rgba(255,255,255,.95); box-shadow: 0 1px 20px rgba(0,0,0,.07); }
#nav.solid .logo-txt { color: var(--ink); }
#nav.solid .logo-txt small { color: var(--blue); }
#nav.solid .nav-links a { color: var(--ink-mid); }
#nav.solid .nav-links a:hover { color: var(--blue); }
#nav.solid .nc { border-color: var(--blue) !important; color: var(--blue) !important; }
#nav.solid .hbg span { background: var(--ink); }
body:not(.home):not(.front-page) #nav { background: rgba(255,255,255,.95); box-shadow: 0 1px 20px rgba(0,0,0,.07); }
body:not(.home):not(.front-page) #nav .logo-txt { color: var(--ink); }
body:not(.home):not(.front-page) #nav .logo-txt small { color: var(--blue); }
body:not(.home):not(.front-page) #nav .nav-links a { color: var(--ink-mid); }
body:not(.home):not(.front-page) #nav .nav-links a:hover { color: var(--blue); }
body:not(.home):not(.front-page) #nav .nc { border-color: var(--blue) !important; color: var(--blue) !important; }
body:not(.home):not(.front-page) #nav .hbg span { background: var(--ink); }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-txt { width:200px; }
.logo-txt small { display: block; font-family: var(--ff-cond); font-weight: 300; font-size: .58rem; letter-spacing: .18em; color: var(--sky); }

.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a { font-family: var(--ff-cond); font-size: .82rem; font-weight: 400; letter-spacing: .1em; color: rgba(255,255,255,.75); text-decoration: none; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nc { border: 1px solid rgba(255,255,255,.4) !important; padding: .35rem 1rem; border-radius: 20px; transition: background .2s !important; }
.nc:hover { background: rgba(255,255,255,.12) !important; }

.hbg { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1002; }
.hbg span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .28s ease, opacity .2s ease, background .2s ease; transform-origin: center; }

/* モバイルナビ */
.mnav {
  display: flex; position: fixed; inset: 0; background: var(--navy); z-index: 1001;
  width: 100%;
  max-width: 100%;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s step-end;
}
.mnav.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease, visibility 0s step-start;
}
.mnav a { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 600; color: rgba(255,255,255,.85); text-decoration: none; opacity: 0; transform: translateY(8px); transition: opacity .24s ease, transform .24s ease; }
.mnav.open a { opacity: 1; transform: translateY(0); }
.mnav.open a:nth-of-type(1) { transition-delay: .04s; }
.mnav.open a:nth-of-type(2) { transition-delay: .08s; }
.mnav.open a:nth-of-type(3) { transition-delay: .12s; }
.mnav.open a:nth-of-type(4) { transition-delay: .16s; }
.mnav.open a:nth-of-type(5) { transition-delay: .2s; }
.mnav a:hover { color: var(--sky); }
.mnav-close { position: absolute; top: 1.4rem; right: 2rem; background: none; border: none; color: rgba(255,255,255,.4); font-size: 1.8rem; cursor: pointer; line-height: 1; }
body.mnav-open #hbg span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.mnav-open #hbg span:nth-child(2) { opacity: 0; }
body.mnav-open #hbg span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════
   HERO ZONE
   参考画像の2枚重なり・カーブ構成
══════════════════════ */
.hero-zone {
  position: relative;
  width: 100%;
  /* 上: 画像A（背景） 下: ラベンダー帯 */
  background: var(--lavender);
  padding-bottom: 0;
}

/* 上段: フル幅写真エリア */
.hero-photo-top {
  position: relative;
  width: 100%;
  height: 55vw;
  max-height: 560px;
  min-height: 320px;
  overflow: hidden;
  background: var(--navy);
}
.hero-photo-top-img {
  position: absolute; inset: 0;
  /* 実装時: background-image:url('hero1.jpg');background-size:cover;background-position:center top; */
  background: linear-gradient(160deg, #1a3a6b 0%, #0b2545 50%, #162e52 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-top-img::after {
  content: 'HERO IMAGE 01';
  font-family: var(--ff-cond); font-size: .7rem; letter-spacing: .25em; color: rgba(255,255,255,.12);
}
/* 下端の大きなカーブ */
.hero-photo-top::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--lavender);
  border-radius: 50% 50% 0 0 / 80px 80px 0 0;
}

/* 中央浮遊カード（楕円グラデーション） */
.hero-float-card {
  position: relative;
  z-index: 5;
  margin: -2.5rem auto 0;
  padding: 2.2rem 2.4rem 2.4rem;
  text-align: center;
}
.hfc-label {
  font-family: var(--ff-cond);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; color: var(--blue);
  text-transform: uppercase; margin-bottom: .7rem;
}
.hfc-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.7rem, 3.5vw, 3.45rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.45; margin-bottom: .8rem;
}
.hfc-body {
  font-size: .78rem; font-weight: 300;
  color: var(--ink-mid); line-height: 1.9;
}

/* ラベンダー帯（中段） */
.hero-mid-band {
  background: var(--lavender);
  padding: 2.4rem 1.5rem 0;
  text-align: center;
}

/* 下段: 2枚目写真 + テキスト（横並び） */
.hero-bottom {
  position: relative;
  background: var(--lavender);
  padding: 2rem 0 3rem;
}
.hero-photo-bottom {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #2a5080 0%, #1a3a6b 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-bottom::after {
  content: 'IMAGE 02';
  font-family: var(--ff-cond); font-size: .68rem; letter-spacing: .22em; color: rgba(255,255,255,.15);
}

/* ══════════════════════
   TRUST STRIP
   sky帯
══════════════════════ */
.trust-strip {
  background: var(--lavender);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0;
}
.trust-chip {
  font-family: var(--ff-cond); font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; color: var(--blue); text-transform: uppercase;
  padding: .7rem 1.8rem;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: .46rem;
}
.trust-chip:last-child { border-right: none; }
.trust-chip__num {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 2rem;
  line-height: .88;
  color: var(--blue);
  letter-spacing: 0;
  text-shadow: 0 10px 22px rgba(26,95,168,.18);
  transform: translateY(1px);
}

/* ══════════════════════
   STRENGTHS
   白背景 → グリッド（写真実装ベース）
══════════════════════ */
#strengths {
  background: var(--white);
  padding: 6rem 0;
}
.sec-label {
  font-family: var(--ff-cond);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .28em; color: var(--blue);
  text-transform: uppercase; margin-bottom: .8rem;
  display: flex; align-items: center; gap: .6rem;
}
.sec-label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--blue); }
.sec-h {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--ink); line-height: 1.35;
}
.sec-sub {
  font-size: .84rem; font-weight: 300;
  color: var(--ink-light); line-height: 1.95; max-width: 460px;
  margin-top: .7rem;
}

/* カード：角丸・淡グレー背景 */
.str-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.str-cards--4 {
  grid-template-columns: repeat(4,1fr);
}
.str-card {
  background: var(--sky-pale);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.str-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,95,168,.1); }
.str-card-num {
  font-family: var(--ff-cond);
  font-size: 5rem; font-weight: 700;
  color: rgba(26,95,168,.08);
  line-height: 1; margin-bottom: .5rem;
  letter-spacing: -.03em;
}
.str-card-h {
  font-family: var(--ff-serif);
  font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: .6rem;
}
.str-card-t {
  font-size: .8rem; font-weight: 300; color: var(--ink-mid); line-height: 1.9;
}
/* 右下装飾ドット */
.str-card::after {
  content: '';
  position: absolute; bottom: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(26,95,168,.07);
}

/* ══════════════════════
   PRODUCTS
   lavender帯
══════════════════════ */
#products {
  background: var(--lavender);
  padding: 6rem 0;
}
.prod-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.prod-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,95,168,.06);
  transition: transform .25s, box-shadow .25s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(26,95,168,.1); }
.prod-thumb {
  width: 100%; aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--sky) 0%, #c0d8f0 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-cond); font-size: .66rem; letter-spacing: .2em; color: rgba(26,95,168,.3);
}
.prod-body { padding: 1.6rem 1.8rem 2rem; }
.prod-tag {
  display: inline-block;
  font-family: var(--ff-cond); font-size: .63rem; font-weight: 600; letter-spacing: .18em;
  color: var(--blue); border: 1px solid rgba(26,95,168,.25);
  padding: .18rem .7rem; border-radius: 100px; margin-bottom: .9rem; text-transform: uppercase;
}
.prod-h { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: .7rem; }
.prod-desc { font-size: .81rem; font-weight: 300; color: var(--ink-mid); line-height: 1.9; margin-bottom: 1.1rem; }
/* ══════════════════════
   GALLERY
   sky帯
══════════════════════ */
#gallery {
  background: var(--sky-pale);
  padding: 6rem 0;
}
/* 参考画像風: 左大・右2枚縦積み */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
}
.gc {
  background: var(--sky);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-cond); font-size: .66rem; letter-spacing: .18em; color: rgba(26,95,168,.35);
}
.gc-main { grid-row: 1/3; aspect-ratio: 3/4; }
.gc-sub  { aspect-ratio: 4/3; }

/* ══════════════════════
   CTA BAND
   navy帯
══════════════════════ */
#cta {
  background: var(--navy);
  padding: 5.5rem 0;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; right: -5%; top: -60%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,196,.12) 0%, transparent 65%);
}
.cta-grid {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 3rem; position: relative; z-index: 1;
}
.cta-h {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: .6rem;
}
.cta-sub { font-size: .83rem; font-weight: 300; color: rgba(255,255,255,.5); }
.cta-right { text-align: right; }
.cta-tel-lbl { font-family: var(--ff-cond); font-size: .62rem; letter-spacing: .2em; color: rgba(255,255,255,.35); text-transform: uppercase; margin-bottom: .3rem; }
.cta-tel {
  display: block; font-family: var(--ff-cond); font-size: 2.2rem; font-weight: 700;
  color: var(--sky); letter-spacing: .04em; text-decoration: none; margin-bottom: .3rem;
  transition: opacity .2s;
}
.cta-tel:hover { opacity: .75; color: var(--sky); }
.cta-addr { font-size: .75rem; color: rgba(255,255,255,.3); line-height: 1.85; margin-bottom: 1.2rem; }
.btn-cta {
  display: inline-block; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  font-family: var(--ff-cond); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .7rem 1.8rem; border-radius: 100px; text-decoration: none; transition: background .2s;
}
.btn-cta:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ══════════════════════
   NEWS
   白背景
══════════════════════ */
#news {
  background: var(--white);
  padding: 6rem 0;
}
.news-layout {
  display: grid; grid-template-columns: 200px 1fr; gap: 4rem; margin-top: 2.5rem;
}
.news-item {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit; transition: padding-left .18s;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item:hover { padding-left: .4rem; }
.news-date { font-family: var(--ff-cond); font-size: .72rem; font-weight: 300; color: var(--ink-light); white-space: nowrap; flex-shrink: 0; letter-spacing: .06em; }
.news-cat { font-family: var(--ff-cond); font-size: .62rem; font-weight: 600; letter-spacing: .16em; color: var(--blue); text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.news-ttl { font-size: .83rem; font-weight: 300; color: var(--ink); line-height: 1.5; }
.news-more {
  display: inline-block; margin-top: 1.6rem;
  font-family: var(--ff-cond); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); text-decoration: none;
  border-bottom: 1px solid rgba(26,95,168,.25); padding-bottom: .15rem; transition: border-color .2s;
}
.news-more:hover { border-color: var(--blue); }

.link-more {
  display: inline-block; margin-top: 1rem;
  font-family: var(--ff-cond); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); text-decoration: none;
  border-bottom: 1px solid rgba(26,95,168,.3); padding-bottom: .15rem; transition: border-color .2s;
}
.link-more:hover { border-color: var(--blue); color: var(--blue); }

/* ══════════════════════
   FOOTER
   lavender帯
══════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem;
}
.foot-name { font-family: var(--ff-serif); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .2rem; }
.foot-en { font-family: var(--ff-cond); font-size: .62rem; letter-spacing: .18em; color: var(--sky); margin-bottom: 1.1rem; }
.foot-desc { font-size: .8rem; font-weight: 300; color: var(--white); line-height: 1.9; }
.foot-lh { font-family: var(--ff-cond); font-size: .65rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--white); margin-bottom: 1.1rem; }
.foot-ul { list-style: none; }
.foot-ul li + li { margin-top: .55rem; }
.foot-ul a { font-size: .8rem; font-weight: 300; color: var(--lavender); text-decoration: none; transition: color .2s; }
.foot-ul a:hover { color: var(--lavender); }
.foot-info { font-size: .8rem; font-weight: 300; color: var(--lavender); line-height: 2; }
.foot-info a { color: var(--lavender); text-decoration: none; }
.foot-copy { font-family: var(--ff-cond); font-size: .68rem; letter-spacing: .08em; color: var(--lavender); text-align: center; }

/* ══════════════════════
   FADE IN
══════════════════════ */
.fi { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fi.on { opacity: 1; transform: none; }
.fi-d1 { transition-delay: .1s; }

/* ══════════════════════
   STATIC PAGE CONTENT
══════════════════════ */
main#primary .container { max-width: 980px; }
main#primary .sec-label { margin-bottom: .6rem; }
main#primary .sec-h {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}
main#primary .sec-sub {
  max-width: none;
  font-size: .96rem;
  line-height: 2;
  color: var(--ink-mid);
}
main#primary .sec-sub h2 {
  font-family: var(--ff-sans);
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  margin: 2.2rem 0 .75rem;
  padding-left: .8rem;
  border-left: 3px solid var(--blue);
}
main#primary .sec-sub p { margin: .5rem 0 1rem;padding-left: 1em; }
main#primary .sec-sub p + p { padding-left: 1em; }
main#primary .sec-sub ul {
  list-style: none;
  margin: .4rem 0 1.1rem;
  padding: 0;
  display: grid;
  gap: .42rem;
  padding-left: 1em;
}
main#primary .sec-sub li {
  position: relative;
  padding-left: 1.05rem;
}
main#primary .sec-sub li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .78rem;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: rgba(26,95,168,.55);
}
main#primary .sec-sub table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: .6rem 0 1.4rem;
  background: #fff;
  border: 1px solid rgba(26,95,168,.16);
  border-radius: 12px;
  overflow: hidden;
}
main#primary .sec-sub th,
main#primary .sec-sub td {
  padding: .8rem .95rem;
  border-bottom: 1px solid rgba(26,95,168,.1);
  vertical-align: top;
}
main#primary .sec-sub tr:last-child th,
main#primary .sec-sub tr:last-child td { border-bottom: none; }
main#primary .sec-sub th {
  width: 28%;
  background: var(--sky-pale);
  color: var(--ink);
  font-weight: 600;
  text-align: left;
}
main#primary .sec-sub td { color: var(--ink-mid); }
main#primary .sec-sub .btn-cta {
  display: inline-block;
  margin-top: .4rem;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  padding: .72rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
}
main#primary .sec-sub .btn-cta:hover {
  background: #174f8a;
  border-color: #174f8a;
  color: #fff;
}
main#primary .sec-sub .cta-right-align {
  text-align: right;
  padding-left: 0;
}
main#primary .sec-sub .content-image-placeholder {
  margin: .8rem 0 1.2rem;
  width: 100%;
  min-height: 220px;
  border: 1px dashed rgba(26,95,168,.35);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(214,233,248,.5) 0%, rgba(232,238,248,.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: var(--ink-light);
  font-size: .82rem;
  letter-spacing: .06em;
}
main#primary .sec-sub .content-image-placeholder strong {
  color: var(--blue);
  font-weight: 600;
}
main#primary .sec-sub .greeting-block::after {
  content: '';
  display: block;
  clear: both;
}
main#primary .sec-sub .greeting-photo-frame {
  float: right;
  width: min(34%, 260px);
  margin: .1rem 0 .9rem 1.15rem;
  border: 1px solid rgba(26,95,168,.2);
  border-radius: 12px;
  overflow: hidden;
  background: var(--sky-pale);
}
main#primary .sec-sub .greeting-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
main#primary .sec-sub .greeting-sign {
  margin-top: 1.2rem;
  text-align: right;
  font-weight: 500;
  color: var(--ink);
}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 992px) {
  #nav { padding: 0 1rem; }
  .nav-links {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    align-items: center;
    justify-content: end;
    gap: .9rem;
  }
  .nav-links a {
    white-space: nowrap;
    font-size: .72rem;
    letter-spacing: .06em;
  }
  .nc {
    padding: .3rem .75rem;
  }
  .str-cards,
  .str-cards--4 { grid-template-columns: 1fr 1fr; }
  .prod-2col  { grid-template-columns: 1fr; }
  .foot-grid  { grid-template-columns: 1fr 1fr; }
  .cta-grid   { grid-template-columns: 1fr; }
  .cta-right  { text-align: left; }
  .news-layout{ grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gc-main { grid-row: auto; aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hbg { display: flex; }
  .str-cards,
  .str-cards--4 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gc-main { aspect-ratio: 16/9; }
  .hero-float-card { border-radius: 24px; }
  .trust-chip {
    width: 100%;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: .8rem 1rem;
  }
  .trust-chip:last-child { border-bottom: none; }
  .trust-chip__num { font-size: 1.65rem; }
  main#primary .sec-sub table,
  main#primary .sec-sub tbody,
  main#primary .sec-sub tr,
  main#primary .sec-sub th,
  main#primary .sec-sub td {
    display: block;
    width: 100%;
  }
  main#primary .sec-sub th {
    border-bottom: none;
    padding-bottom: .25rem;
  }
  main#primary .sec-sub td { padding-top: .15rem; }
  main#primary .sec-sub .greeting-photo-frame {
    float: none;
    width: 100%;
    max-width: 320px;
    margin: .2rem auto 1rem;
  }
  main#primary .sec-sub .greeting-sign { text-align: left; }
  main#primary .sec-sub .cta-right-align { text-align: left; }
}
