/* ==========================================================================
   청진수산 — 가자미막회 전국 납품 전문
   무드: 신선·시원함(하늘색/바다) · 브랜드 코발트(#1D328F) 로고 기반
   ========================================================================== */

/* ---- Fonts ---- */
@font-face {
  font-family: 'GmarketSansBold';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: 'GmarketSansMedium';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
  font-weight: 500; font-display: swap;
}

/* ---- Design tokens ---- */
:root {
  /* brand */
  --ink-deep:   #122a6e;   /* 로고 코발트 딥 */
  --cobalt:     #1d328f;
  --sky:        #1f8fe0;   /* 요청 하늘색 (배경/아이콘용) */
  --sky-deep:   #136bb4;   /* 텍스트 대비용 진한 하늘색 (WCAG AA, 물안개 배경 포함) */
  --sky-light:  #5bb8ef;
  --teal:       #2bb6c8;   /* 신선 포인트 */
  --gold:       #e8a23d;   /* 별점/가격 절제 강조 */

  /* neutrals */
  --ink:        #0c2344;   /* 본문 */
  --ink-soft:   #46587a;
  --mist:       #eaf4fc;   /* 옅은 물안개 배경 */
  --mist-2:     #f4fafe;
  --line:       #d7e6f4;
  --white:      #ffffff;

  /* surfaces */
  --surface:    #ffffff;
  --bg:         #f7fbfe;

  --radius:     18px;
  --radius-sm:  12px;
  --shadow-sm:  0 2px 10px rgba(18, 42, 110, .07);
  --shadow:     0 14px 40px -14px rgba(18, 42, 110, .28);
  --shadow-lg:  0 30px 70px -24px rgba(18, 42, 110, .40);

  --maxw: 1160px;
  --header-h: 72px;

  --font-display: 'GmarketSansBold', 'Pretendard', sans-serif;
  --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
}

/* ---- Reset ---- */
[hidden] { display: none !important; }  /* hidden 속성이 .btn 등 display 규칙에 덮이지 않도록 */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 4px; }

/* ---- Layout helpers ---- */
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--mist { background: linear-gradient(180deg, var(--mist-2), var(--mist)); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .12em;
  color: var(--sky-deep); text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sky); border-radius: 2px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1.2; color: var(--ink-deep); letter-spacing: -.01em;
}
.section-lead { color: var(--ink-soft); font-size: clamp(1rem, 2vw, 1.12rem); margin-top: 14px; max-width: 60ch; }
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

/* skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--cobalt); color: #fff; padding: 10px 18px; border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-size: 1rem;
  padding: 15px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--cobalt); color: #fff; box-shadow: 0 10px 24px -8px rgba(29,50,143,.6); }
.btn--primary:hover { background: var(--ink-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(29,50,143,.7); }
.btn--sky { background: linear-gradient(135deg, #1567b8, var(--sky)); color: #fff; box-shadow: 0 10px 24px -8px rgba(31,143,224,.55); }
.btn--sky:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(31,143,224,.7); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn--outline { background: #fff; color: var(--cobalt); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s;
}
.header.scrolled { box-shadow: 0 6px 24px -16px rgba(18,42,110,.5); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 38px; width: auto; }
.brand__name { font-family: var(--font-display); font-size: 1.18rem; color: var(--ink-deep); line-height: 1.05; }
.brand__name small { display: block; font-size: .62rem; letter-spacing: .14em; color: var(--sky); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: .96rem; color: var(--ink); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--sky); transition: width .22s; }
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 10px; }
.header__tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); color: var(--cobalt); font-size: 1rem;
  padding: 9px 18px; border-radius: 999px; background: var(--mist); transition: background .18s, transform .18s;
}
.header__tel:hover { background: #dcecfa; transform: translateY(-1px); }
.header__tel svg { width: 17px; height: 17px; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--ink-deep); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; padding-top: calc(var(--header-h) + 70px); padding-bottom: 140px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(91,184,239,.35), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(43,182,200,.18), transparent 55%),
    linear-gradient(160deg, #eaf5fe 0%, #d7ecfb 55%, #cfe6fa 100%);
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--cobalt); font-weight: 700; font-size: .85rem;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(43,182,200,.25); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 4rem); line-height: 1.12; letter-spacing: -.02em; color: var(--ink-deep);
}
.hero h1 .hl { color: var(--sky); }
.hero__sub { margin-top: 22px; font-size: clamp(1.02rem, 2.2vw, 1.22rem); color: var(--ink-soft); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats { display: flex; gap: 30px; margin-top: 42px; flex-wrap: wrap; }
.hero__stat strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--cobalt); display: block; line-height: 1; }
.hero__stat span { font-size: .85rem; color: var(--ink-soft); }

.hero__visual { position: relative; }
.hero__photo {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  border: 6px solid #fff; transform: rotate(1.4deg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__chip {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero__chip--tl { top: 18px; left: -26px; transform: rotate(-2deg); }
.hero__chip--br { bottom: 26px; right: -22px; }
.hero__chip .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--mist); display: grid; place-items: center; color: var(--sky); flex: 0 0 auto; }
.hero__chip .ic svg { width: 22px; height: 22px; }
.hero__chip b { font-family: var(--font-display); color: var(--ink-deep); font-size: .98rem; display: block; }
.hero__chip span { font-size: .76rem; color: var(--ink-soft); }

/* wave divider */
.wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.wave svg { width: 100%; height: 70px; display: block; }

/* ==========================================================================
   Trust strip (언론/강점)
   ========================================================================== */
.trust { background: var(--cobalt); color: #fff; padding: 22px 0; }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; text-align: center; }
.trust__item { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .98rem; }
.trust__item svg { width: 20px; height: 20px; color: var(--sky-light); flex: 0 0 auto; }
.trust__sep { width: 1px; height: 18px; background: rgba(255,255,255,.25); }

/* ==========================================================================
   About
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: 22px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about__media .tag {
  position: absolute; bottom: -18px; left: 22px; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow); padding: 12px 18px; font-family: var(--font-display); color: var(--cobalt);
  display: flex; align-items: center; gap: 9px; font-size: .95rem;
}
.about__media .tag svg { width: 18px; height: 18px; color: var(--teal); }
.story { margin-top: 22px; color: var(--ink-soft); }
.story p + p { margin-top: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.chip {
  background: var(--mist); color: var(--cobalt); font-weight: 600; font-size: .86rem;
  padding: 7px 15px; border-radius: 999px; border: 1px solid var(--line);
}

/* ==========================================================================
   Strength cards (선도 1원칙)
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #c6def3; }
.card__ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--sky), var(--teal)); color: #fff; }
.card__ic svg { width: 27px; height: 27px; }
.card h3 { font-family: var(--font-display); font-size: 1.18rem; color: var(--ink-deep); margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .96rem; }

/* ==========================================================================
   Menu / products
   ========================================================================== */
.menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.product {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product__media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--mist); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product:hover .product__media img { transform: scale(1.05); }
.product__tag {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.94); color: var(--cobalt);
  font-weight: 700; font-size: .8rem; padding: 6px 13px; border-radius: 999px; backdrop-filter: blur(3px);
}
.product__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink-deep); }
/* 카드 전체가 스마트스토어 링크 — 구매 안내 줄 */
.product__buy {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--font-display); font-size: .96rem; color: var(--sky-deep);
}
.product__buy svg { width: 18px; height: 18px; transition: transform .2s; }
.product:hover .product__buy { color: var(--cobalt); }
.product:hover .product__buy svg { transform: translateX(4px); }
.product:hover { border-color: #9fcdef; }
.product:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
.product__body > p { color: var(--ink-soft); font-size: .92rem; margin-top: 4px; }
.price-rows { margin-top: 16px; border-top: 1px dashed var(--line); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.price-row .opt { color: var(--ink); font-weight: 600; }
.price-row .opt small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .78rem; }
.price-row .won { font-family: var(--font-display); color: var(--cobalt); font-size: 1.18rem; }
.price-row .won span { font-size: .8rem; color: var(--ink-soft); font-family: var(--font-body); }

.b2b-note {
  margin-top: 26px; background: linear-gradient(135deg, rgba(31,143,224,.1), rgba(43,182,200,.1));
  border: 1px solid #cfe6fa; border-radius: var(--radius); padding: 22px 26px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.b2b-note .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--cobalt); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.b2b-note .ic svg { width: 24px; height: 24px; }
.b2b-note b { font-family: var(--font-display); color: var(--ink-deep); }
.b2b-note p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.b2b-note .btn { margin-left: auto; }

/* 소매(네이버쇼핑) 안내 — 기본 숨김, 주소 확정 시 노출 */
.retail-note { margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.retail-note[hidden] { display: none; }
.retail-note span { color: var(--ink-soft); font-size: .98rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-sm); position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(18,42,110,.35)); opacity: 0; transition: opacity .3s; }
.gallery figure:hover::after { opacity: 1; }
.gallery figcaption {
  position: absolute; left: 14px; bottom: 12px; color: #fff; font-weight: 600; font-size: .9rem;
  z-index: 2; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }
.g-span2 { grid-column: span 2; grid-row: span 2; }

/* 전화 상담 팝업 */
.callbox { position: fixed; inset: 0; z-index: 310; background: rgba(8,20,44,.55); backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; padding: 24px; }
.callbox.open { display: flex; animation: cb-fade .2s ease; }
@keyframes cb-fade { from { opacity: 0; } to { opacity: 1; } }
.callbox__panel {
  position: relative; background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg);
  padding: 36px 30px 30px; width: min(100% - 40px, 380px); text-align: center;
  animation: cb-pop .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes cb-pop { from { transform: translateY(14px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.callbox__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; color: var(--ink-soft); display: grid; place-items: center; }
.callbox__close:hover { background: var(--mist); }
.callbox__close svg { width: 22px; height: 22px; }
.callbox__ic { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sky), var(--cobalt)); color: #fff; }
.callbox__ic svg { width: 30px; height: 30px; }
.callbox__title { font-family: var(--font-display); color: var(--ink-deep); font-size: 1.05rem; }
.callbox__num { display: inline-block; font-family: var(--font-display); color: var(--cobalt); font-size: 2rem; letter-spacing: .01em; margin: 8px 0 4px; }
.callbox__hours { color: var(--ink-soft); font-size: .88rem; margin-bottom: 22px; }
.callbox__actions { display: flex; gap: 10px; }
.callbox__actions .btn { flex: 1; padding: 14px 12px; font-size: .98rem; }
.callbox__copied { min-height: 20px; margin-top: 12px; font-size: .86rem; color: #1a9b58; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,20,44,.9); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 20px; right: 24px; color: #fff; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; }
.lightbox__close svg { width: 26px; height: 26px; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm); position: relative;
}
.review__stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.review__best { display: inline-block; vertical-align: middle; margin-left: 8px; background: #fdeccf; color: #9a5e0c; font-weight: 700; font-size: .68rem; padding: 3px 9px; border-radius: 999px; }
.review p { color: var(--ink); margin-top: 14px; font-size: .98rem; line-height: 1.7; }
.review__meta { margin-top: 18px; display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--line); padding-top: 16px; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--sky), var(--cobalt)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: .9rem; }
.review__who b { color: var(--ink-deep); font-size: .92rem; }
.review__who span { display: block; color: var(--ink-soft); font-size: .8rem; }
.reviews__note { text-align: center; margin-top: 26px; color: var(--ink-soft); font-size: .9rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; transition: box-shadow .2s; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: #c6def3; }
.faq__q { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; gap: 14px; font-family: var(--font-display); color: var(--ink-deep); font-size: 1.04rem; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .qmark { width: 28px; height: 28px; border-radius: 8px; background: var(--mist); color: var(--sky-deep); display: grid; place-items: center; font-weight: 700; flex: 0 0 auto; }
.faq__q .chev { margin-left: auto; transition: transform .25s; color: var(--sky); }
.faq__q .chev svg { width: 20px; height: 20px; display: block; }
.faq__item[open] .chev { transform: rotate(180deg); }
.faq__a { padding: 0 24px 22px 66px; color: var(--ink-soft); font-size: .98rem; }

/* ==========================================================================
   Location
   ========================================================================== */
.loc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 50px); align-items: stretch; }
.loc__info { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 38px); box-shadow: var(--shadow-sm); }
.loc__list { margin-top: 8px; }
.loc__row { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.loc__row:last-child { border-bottom: none; }
.loc__row .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--mist); color: var(--sky); display: grid; place-items: center; flex: 0 0 auto; }
.loc__row .ic svg { width: 21px; height: 21px; }
.loc__row dt { font-family: var(--font-display); color: var(--ink-deep); font-size: .95rem; }
.loc__row dd { color: var(--ink-soft); margin: 2px 0 0; font-size: .95rem; }
.loc__map-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.loc__visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; position: relative; background: var(--mist); }
.loc__visual img { width: 100%; height: 100%; object-fit: cover; }
.loc__visual .overlay {
  position: absolute; inset: auto 16px 16px 16px; background: rgba(255,255,255,.95); border-radius: 14px;
  padding: 16px 20px; box-shadow: var(--shadow);
}
.loc__visual .overlay b { font-family: var(--font-display); color: var(--ink-deep); display: block; }
.loc__visual .overlay span { color: var(--ink-soft); font-size: .88rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: linear-gradient(165deg, var(--ink-deep), #0d1f49 70%); color: #fff; }
.contact .section-title, .contact .eyebrow { color: #fff; }
.contact .eyebrow { color: var(--sky-light); }
.contact .eyebrow::before { background: var(--sky-light); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.contact__lead { color: #bcd4ee; margin-top: 16px; max-width: 42ch; }
.contact__call {
  margin-top: 30px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 26px;
}
.contact__call span { color: #9fc2e6; font-size: .9rem; }
.contact__call a.tel { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2rem); color: #fff; margin-top: 6px; }
.contact__call a.tel svg { width: 30px; height: 30px; color: var(--sky-light); }
.contact__hours { margin-top: 14px; color: #9fc2e6; font-size: .9rem; }
.contact__channels { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.channel { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #fff; font-weight: 600; font-size: .9rem; transition: background .18s, transform .18s; }
.channel:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.channel svg { width: 18px; height: 18px; }

/* form */
.form { background: #fff; border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow-lg); color: var(--ink); }
.form h3 { font-family: var(--font-display); color: var(--ink-deep); font-size: 1.3rem; margin-bottom: 6px; }
.form > p.muted { color: var(--ink-soft); font-size: .9rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink-deep); }
.field label .req { color: #e0483b; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .98rem; color: var(--ink); background: var(--mist-2);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky); background: #fff; box-shadow: 0 0 0 4px rgba(31,143,224,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.consent { display: flex; gap: 11px; align-items: flex-start; background: var(--mist); padding: 14px 16px; border-radius: 12px; }
.consent input { width: 19px; height: 19px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--cobalt); }
.consent label { font-size: .86rem; color: var(--ink-soft); font-weight: 400; margin: 0; }
.consent a { color: var(--cobalt); text-decoration: underline; }
.form .btn { width: 100%; margin-top: 18px; }
.form__status { margin-top: 14px; font-size: .92rem; text-align: center; min-height: 22px; }
.form__status.ok { color: #1a9b58; }
.form__status.err { color: #e0483b; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #0a1934; color: #c7d6ec; padding: 60px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer__brand img { height: 46px; margin-bottom: 16px; }
.footer__brand p { font-size: .9rem; color: #93a7c6; max-width: 36ch; }
.footer h4 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__links a { display: block; padding: 6px 0; color: #c7d6ec; font-size: .92rem; transition: color .15s; }
.footer__links a:hover { color: var(--sky-light); }
.footer__biz p { font-size: .85rem; color: #93a7c6; margin-bottom: 7px; line-height: 1.55; }
.footer__biz a.bizchk { color: var(--sky-light); text-decoration: underline; font-size: .8rem; }
.footer__bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; font-size: .85rem; }
.footer__legal a { color: #c7d6ec; }
.footer__legal a.privacy { font-weight: 700; color: #fff; }
.footer__legal .sep { color: #44567a; }
.footer__credit { font-size: .85rem; color: #93a7c6; }
.footer__credit a { color: var(--sky-light); font-weight: 600; }

/* ==========================================================================
   Mobile sticky call bar
   ========================================================================== */
.mobile-call { display: none; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin: 8px auto 0; }
  .about__grid, .loc__grid, .contact__grid, .menu__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; }
  .cards { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav, .header__tel { display: none; }
  .nav-toggle { display: grid; }
  .header { background: rgba(255,255,255,.95); }
  /* mobile menu */
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: #fff; padding: 8px 20px 20px; box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
  }
  .nav.open a { padding: 14px 4px; border-bottom: 1px solid var(--mist); }
  .nav.open a::after { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-span2 { grid-column: span 2; grid-row: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .b2b-note .btn { margin-left: 0; width: 100%; }
  .trust__sep { display: none; }
  body { padding-bottom: 64px; }
  .mobile-call {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px -12px rgba(18,42,110,.5);
  }
  .mobile-call a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; font-family: var(--font-display); font-size: 1rem; }
  .mobile-call a svg { width: 19px; height: 19px; }
  .mobile-call .mc-tel { background: var(--cobalt); color: #fff; }
  .mobile-call .mc-form { color: var(--cobalt); }
}
@media (max-width: 420px) {
  .hero__chip--tl { left: -8px; } .hero__chip--br { right: -6px; }
  .hero__stats { gap: 20px; }
}
