/* ============================================================
   SUKIHAGANE 透鋼 — sumi & moon
   Ink-black ground, washi bone, moon silver, one drop of
   vermilion (the hanko). Shippori Mincho carries both scripts.
   ============================================================ */

:root {
  --ink: #0f0e0c;          /* sumi ground */
  --ink-2: #161411;        /* raised panels */
  --ink-3: #1e1b17;        /* borders' base */
  --bone: #ece5d8;         /* washi text */
  --bone-dim: #a89f90;     /* secondary text */
  --bone-faint: #6d665b;   /* captions, rules */
  --moon: #c6cdd2;         /* cold silver accent */
  --shu: #b43a2b;          /* vermilion seal */
  --shu-bright: #d0492f;
  --line: rgba(236, 229, 216, .13);
  --line-soft: rgba(236, 229, 216, .07);
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --wrap: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* paper grain over everything */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--shu); color: var(--bone); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

/* Japanese text rendering */
:lang(ja), [data-lang-root="ja"] body, [data-lang-root="ja"] .t {
  letter-spacing: .04em;
}
[data-lang-root="ja"] h1, [data-lang-root="ja"] h2 { font-weight: 500; }

/* ============================ type ============================ */

h1, h2, h3 { font-weight: 500; line-height: 1.18; letter-spacing: .01em; }
h1 { font-size: clamp(44px, 7.2vw, 96px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: 22px; }
em { font-style: italic; }

.over {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--bone-faint);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.over::before { content: ""; width: 38px; height: 1px; background: var(--shu); flex: none; }

.muted { color: var(--bone-dim); }

/* ============================ header ============================ */

header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background .45s, border-color .45s, backdrop-filter .45s;
}
header.solid {
  background: rgba(15, 14, 12, .82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.head-in {
  display: flex; align-items: center; gap: 34px;
  height: 76px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.hanko {
  width: 40px; height: 40px; flex: none;
  background: var(--shu);
  color: #f2e9dc;
  display: grid; place-items: center;
  font-size: 15px; line-height: 1.05;
  font-weight: 600;
  writing-mode: vertical-rl;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 2px 10px rgba(180, 58, 43, .25);
  letter-spacing: .1em;
  user-select: none;
}
.brand-name {
  font-size: 17px; letter-spacing: .34em; text-transform: uppercase;
  font-weight: 500;
}
.brand-name small {
  display: block; font-family: var(--sans); font-size: 9px;
  letter-spacing: .5em; color: var(--bone-faint); margin-top: 1px;
}

nav.main { display: flex; gap: 30px; margin-left: auto; }
nav.main a {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--bone-dim);
  padding: 6px 0; position: relative;
  transition: color .3s;
}
nav.main a:hover { color: var(--bone); }
nav.main a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--shu);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
nav.main a:hover::after { transform: scaleX(1); transform-origin: left; }

.head-tools { display: flex; align-items: center; gap: 18px; }

.lang {
  display: flex; border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden; font-family: var(--sans); font-size: 11.5px;
}
.lang button {
  padding: 7px 13px; letter-spacing: .08em; color: var(--bone-faint);
  transition: .3s;
}
.lang button.on { background: var(--bone); color: var(--ink); }

.cart-btn {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 17px;
  transition: border-color .3s, background .3s;
}
.cart-btn:hover { border-color: var(--bone-dim); }
.cart-btn b {
  background: var(--shu); color: #f2e9dc; font-weight: 600;
  min-width: 20px; height: 20px; border-radius: 999px;
  display: grid; place-items: center; font-size: 11px;
}

/* ============================ hero ============================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center 30%;
  animation: heroDrift 22s var(--ease) both;
}
@keyframes heroDrift {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,14,12,.55) 0%, rgba(15,14,12,.15) 40%, rgba(15,14,12,.92) 88%),
    radial-gradient(120% 80% at 80% 10%, transparent 40%, rgba(15,14,12,.55) 100%);
}

.hero-in {
  width: 100%;
  padding-top: 140px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

.hero h1 {
  margin: 18px 0 26px;
  max-width: 12ch;
}
.hero-sub { max-width: 54ch; color: var(--bone-dim); font-size: 18px; }

.hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 2px;
  transition: .35s var(--ease);
  position: relative; overflow: hidden;
}
.btn-fill { background: var(--bone); color: var(--ink); }
.btn-fill:hover { background: #fff; transform: translateY(-2px); }
.btn-line { border: 1px solid var(--line); color: var(--bone); }
.btn-line:hover { border-color: var(--bone-dim); transform: translateY(-2px); }
.btn-shu { background: var(--shu); color: #f6ece0; }
.btn-shu:hover { background: var(--shu-bright); transform: translateY(-2px); }
.btn[disabled] { opacity: .55; pointer-events: none; }

.hero-proof {
  display: flex; gap: 44px; margin-top: 56px;
  border-top: 1px solid var(--line-soft); padding-top: 26px;
  font-family: var(--sans); font-size: 12.5px; color: var(--bone-faint);
  letter-spacing: .05em;
  flex-wrap: wrap;
}
.hero-proof b {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: 30px; color: var(--bone); letter-spacing: 0;
}

/* vertical japanese column, right of hero */
.tategaki {
  writing-mode: vertical-rl;
  font-size: 15px; letter-spacing: .42em; line-height: 2;
  color: var(--bone-dim);
  border-left: 1px solid var(--line);
  padding-left: 22px;
  height: min(430px, 48vh);
  user-select: none;
}
.tategaki b { color: var(--shu-bright); font-weight: 500; }

/* ============================ marquee ============================ */

.strip {
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 15px 0;
  background: var(--ink-2);
}
.strip-track {
  display: flex; gap: 64px; width: max-content;
  animation: slide 46s linear infinite;
  font-family: var(--sans); font-size: 12px; letter-spacing: .38em;
  text-transform: uppercase; color: var(--bone-faint);
  white-space: nowrap;
}
.strip-track span i { font-style: normal; color: var(--shu); margin-right: 64px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================ story ============================ */

.story { padding: 130px 0 40px; }
.story-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  padding: 60px 0;
}
.story-block:nth-child(even) .story-media { order: 2; }

.story-media {
  position: relative;
  aspect-ratio: 16/10.5;
  overflow: hidden;
  border-radius: 2px;
}
.story-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease);
  filter: saturate(.92);
}
.story-block:hover .story-media img { transform: scale(1.01); }
.story-media::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(236,229,216,.08);
}

.story-num {
  font-size: clamp(70px, 7vw, 110px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--bone-faint);
  display: block;
  margin-bottom: 18px;
}
.story-txt h2 { margin-bottom: 20px; max-width: 16ch; }
.story-txt p { color: var(--bone-dim); max-width: 52ch; }

/* ============================ featured grid ============================ */

.section { padding: 120px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; margin-bottom: 58px; flex-wrap: wrap;
}
.section-head h2 { max-width: 18ch; }
.section-head .link-more {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bone-dim);
  border-bottom: 1px solid var(--line); padding-bottom: 6px;
  transition: color .3s, border-color .3s;
  white-space: nowrap;
}
.section-head .link-more:hover { color: var(--bone); border-color: var(--shu); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 22px;
}

.card {
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .5s;
  position: relative;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); }

.card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: #131210;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.card:hover .card-img img { transform: scale(1.05); }

.badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--sans); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase;
  background: rgba(15,14,12,.72); backdrop-filter: blur(6px);
  color: var(--bone);
  padding: 6px 11px; border-radius: 2px;
  border-left: 2px solid var(--shu);
}

.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-kind {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--bone-faint);
}
.card-name { font-size: 19px; font-weight: 500; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px;
}
.price { font-size: 18px; color: var(--moon); letter-spacing: .02em; }
.card-add {
  font-family: var(--sans); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px;
  transition: .3s;
}
.card-add:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* ============================ masterpiece ============================ */

.master {
  background: var(--ink-2);
  border-block: 1px solid var(--line-soft);
}
.master-in {
  display: grid; grid-template-columns: minmax(0, 460px) 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 110px 32px;
  max-width: var(--wrap); margin: 0 auto;
}
.master-img {
  position: relative; border-radius: 2px; overflow: hidden;
}
.master-img img { filter: saturate(.95); }
.master-img::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(236,229,216,.08);
}
.master-txt h2 { margin: 14px 0 20px; }
.master-txt .blurb { color: var(--bone-dim); max-width: 52ch; margin-bottom: 30px; }
.master-price {
  display: flex; align-items: baseline; gap: 18px; margin-bottom: 30px;
}
.master-price .price { font-size: 34px; color: var(--bone); }
.master-note {
  font-family: var(--sans); font-size: 12px; color: var(--bone-faint);
  letter-spacing: .04em; margin-top: 18px; max-width: 40ch;
}

/* ============================ philosophy ============================ */

.phil {
  position: relative; text-align: center;
  padding: 170px 32px;
  overflow: hidden;
}
.phil-kanji {
  position: absolute; inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(220px, 34vw, 460px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236,229,216,.09);
  user-select: none; pointer-events: none;
  white-space: nowrap;
}
.phil blockquote {
  position: relative;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.6;
  max-width: 26em; margin: 0 auto 26px;
  font-weight: 500;
}
.phil cite {
  font-family: var(--sans); font-style: normal; font-size: 12px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--bone-faint);
}

/* ============================ care ============================ */

.care-head { max-width: 620px; margin-bottom: 58px; }
.care-head p { color: var(--bone-dim); margin-top: 18px; }

/* ============================ collection page ============================ */

.page-head {
  padding: 190px 0 70px;
  border-bottom: 1px solid var(--line-soft);
  position: relative; overflow: hidden;
}
.page-head h1 { font-size: clamp(40px, 5.6vw, 76px); margin: 16px 0 22px; }
.page-head p { color: var(--bone-dim); max-width: 56ch; }
.page-kanji {
  position: absolute; right: -20px; top: 40px;
  writing-mode: vertical-rl;
  font-size: clamp(120px, 16vw, 230px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(236,229,216,.07);
  user-select: none; pointer-events: none;
}

.filters { display: flex; gap: 10px; margin: 44px 0 34px; flex-wrap: wrap; }
.filters button {
  font-family: var(--sans); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; color: var(--bone-dim);
  transition: .3s;
}
.filters button.on { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.filters button:not(.on):hover { border-color: var(--bone-dim); color: var(--bone); }

/* ============================ product page ============================ */

.product {
  padding: 150px 0 110px;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.product-img {
  position: sticky; top: 110px;
  border-radius: 2px; overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
}
.product-info .back {
  font-family: var(--sans); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--bone-faint);
  display: inline-block; margin-bottom: 30px;
  transition: color .3s;
}
.product-info .back:hover { color: var(--bone); }
.product-info h1 { font-size: clamp(34px, 4vw, 56px); margin: 8px 0 14px; }
.product-info .card-kind { font-size: 12px; }
.product-info .blurb { color: var(--bone-dim); margin: 20px 0 30px; max-width: 50ch; font-size: 18px; }
.product-info .price { font-size: 32px; color: var(--bone); display: block; margin-bottom: 28px; }

.specs { margin: 44px 0 0; border-top: 1px solid var(--line-soft); }
.specs h3 {
  font-family: var(--sans); font-size: 11px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--bone-faint);
  padding: 22px 0 6px;
}
.specs dl { display: grid; grid-template-columns: max-content 1fr; }
.specs dt, .specs dd {
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.specs dt { color: var(--bone-faint); padding-right: 36px; font-family: var(--sans); font-size: 13px; letter-spacing: .06em; }
.specs dd { color: var(--bone); }

.ship-note {
  font-family: var(--sans); font-size: 12.5px; color: var(--bone-faint);
  margin-top: 26px; letter-spacing: .03em;
  display: flex; gap: 10px; align-items: baseline;
}
.ship-note::before { content: "〒"; color: var(--shu-bright); }

.related { padding-bottom: 130px; }
.related h2 { font-size: 26px; margin-bottom: 34px; }

/* ============================ cart drawer ============================ */

.veil {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(10, 9, 8, .6); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.veil.on { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(430px, 100vw);
  background: var(--ink-2);
  border-left: 1px solid var(--line);
  transform: translateX(102%);
  transition: transform .55s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.on { transform: none; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 28px; border-bottom: 1px solid var(--line-soft);
}
.drawer-head h3 { font-size: 20px; }
.drawer-head button { font-size: 26px; line-height: 1; color: var(--bone-dim); transition: color .3s; }
.drawer-head button:hover { color: var(--bone); }

.drawer-items { flex: 1; overflow-y: auto; padding: 10px 28px; }
.cart-line {
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 16px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
}
.cart-line img {
  width: 64px; height: 80px; object-fit: cover; border-radius: 2px;
}
.cart-line .n { font-size: 15.5px; }
.cart-line .p { font-family: var(--sans); font-size: 12.5px; color: var(--bone-faint); margin-top: 3px; }
.qty {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px;
  margin-top: 8px;
}
.qty button {
  width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 999px;
  display: grid; place-items: center; color: var(--bone-dim); font-size: 14px;
  transition: .3s;
}
.qty button:hover { color: var(--bone); border-color: var(--bone-dim); }
.cart-line .rm { color: var(--bone-faint); font-size: 18px; transition: color .3s; align-self: start; margin-top: 4px; }
.cart-line .rm:hover { color: var(--shu-bright); }
.cart-empty { padding: 60px 0; text-align: center; color: var(--bone-faint); }

.drawer-foot { padding: 24px 28px 30px; border-top: 1px solid var(--line-soft); }
.drawer-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px; font-size: 18px;
}
.drawer-total b { font-size: 26px; font-weight: 500; color: var(--moon); }
.drawer-foot .btn { width: 100%; }
.drawer-note {
  font-family: var(--sans); font-size: 11.5px; color: var(--bone-faint);
  margin-top: 14px; text-align: center; letter-spacing: .03em;
}
.drawer-clear {
  display: block; margin: 10px auto 0;
  font-family: var(--sans); font-size: 11px; letter-spacing: .1em;
  color: var(--bone-faint); text-decoration: underline; text-underline-offset: 3px;
}

/* ============================ toast ============================ */

.toast {
  position: fixed; left: 50%; bottom: 34px; z-index: 100;
  transform: translate(-50%, 20px);
  background: var(--bone); color: var(--ink);
  font-family: var(--sans); font-size: 13.5px; letter-spacing: .03em;
  padding: 13px 24px; border-radius: 999px;
  opacity: 0; pointer-events: none;
  transition: .45s var(--ease);
  box-shadow: 0 14px 40px rgba(0,0,0,.4);
  max-width: 90vw; text-align: center;
}
.toast.on { opacity: 1; transform: translate(-50%, 0); }

/* ============================ footer ============================ */

footer {
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
  padding: 90px 0 44px;
  margin-top: 40px;
}
.foot-in {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}
.foot-brand .hanko { width: 52px; height: 52px; font-size: 19px; margin-bottom: 20px; }
.foot-brand p { color: var(--bone-dim); max-width: 34ch; font-size: 15.5px; }
.foot-col h4 {
  font-family: var(--sans); font-size: 11px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--bone-faint);
  margin-bottom: 20px; font-weight: 500;
}
.foot-col a {
  display: block; padding: 7px 0; color: var(--bone-dim); font-size: 15.5px;
  transition: color .3s;
}
.foot-col a:hover { color: var(--bone); }
.foot-legal {
  margin-top: 70px; padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--sans); font-size: 12px; color: var(--bone-faint);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  letter-spacing: .03em;
}

/* ============================ reveals ============================ */

.rv { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; } .rv-d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
}

/* ============================ responsive ============================ */

@media (max-width: 960px) {
  nav.main { display: none; }
  .hero-in { grid-template-columns: 1fr; }
  .tategaki { display: none; }
  .story-block { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .story-block:nth-child(even) .story-media { order: 0; }
  .master-in { grid-template-columns: 1fr; padding: 80px 32px; }
  .product { grid-template-columns: 1fr; }
  .product-img { position: static; }
  .foot-in { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero-proof { gap: 26px; }
  .brand-name { display: none; }
  .master-in { padding: 70px 20px; }
  .phil { padding: 120px 20px; }
}
