/* ============================================================
   Ben's Golf — Direction A · Clean Premium
   Quiet-luxury golf lifestyle. Aesop x premium golf label.
   ============================================================ */

:root {
  /* Palette */
  --cream:      #F6F4EF;   /* warm off-white base */
  --cream-2:    #EFEBE2;   /* slightly deeper cream */
  --sand:       #E4DDCE;   /* soft sand */
  --sand-2:     #D8CFBB;
  --ink:        #1E3A2F;   /* deep forest / ink green */
  --ink-soft:   #2C4A3D;
  --ink-line:   rgba(30, 58, 47, 0.14);
  --ink-mute:   rgba(30, 58, 47, 0.62);
  --accent:     #C8A24B;   /* single restrained gold accent */
  --paper:      #FBFAF6;
  --white:      #FFFFFF;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  font-optical-sizing: auto;
}
.display {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 300;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-mute); line-height: 1.7; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.hairline { border: 0; border-top: 1px solid var(--ink-line); margin: 0; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  transition: background .35s ease, color .35s ease, transform .35s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--wide { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 40px; }

.link-underline {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
  transition: opacity .3s ease;
}
.link-underline:hover { opacity: 0.55; }

/* ============================================================
   Header
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 16px;
}
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 244, 239, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--ink-line);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-block: 18px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  grid-column: 2;
  text-align: center;
  white-space: nowrap;
}
.brand .apo { color: var(--accent); }
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
.header__actions { grid-column: 3; display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.icon-btn {
  background: none; border: 0; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; letter-spacing: 0.1em;
  padding: 4px;
}
.cart-count {
  font-variant-numeric: tabular-nums;
  background: var(--ink); color: var(--cream);
  font-size: 0.62rem; border-radius: 999px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav { grid-column: 1 / -1; }
.nav__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  padding-top: 14px;
}
.nav__list a {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  position: relative;
  transition: color .3s ease;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .35s ease;
}
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { width: 100%; }
.nav__list a[aria-current="page"] { color: var(--ink); }

.menu-toggle { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding-block: clamp(56px, 8vw, 110px);
}
.hero__copy .eyebrow { margin-bottom: 22px; display: inline-block; }
.hero__copy .display { margin-bottom: 24px; }
.hero__copy .lede { max-width: 42ch; margin-bottom: 38px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ---------- Placeholder art ---------- */
.ph {
  position: relative;
  display: grid; place-items: center;
  width: 100%; height: 100%;
  background: linear-gradient(150deg, var(--sand) 0%, var(--cream-2) 55%, var(--sand-2) 100%);
  color: var(--ink);
  overflow: hidden;
}
.ph--ink { background: linear-gradient(150deg, var(--ink) 0%, var(--ink-soft) 100%); color: var(--cream); }
.ph--sand { background: linear-gradient(150deg, var(--sand-2), var(--sand)); }
.ph::before {
  /* subtle "green" motif ring */
  content: ""; position: absolute;
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid currentColor; opacity: 0.16;
}
.ph::after {
  content: ""; position: absolute;
  width: 46%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid currentColor; opacity: 0.16;
}
.ph__label {
  position: relative; z-index: 2;
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.6rem);
  text-align: center; padding: 0 22px;
  letter-spacing: -0.01em;
  max-width: 90%;
}
.ph__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.7;
}

/* ---------- Real product imagery ----------
   Photos are gallery screenshots with faint baked-in chrome at the edges
   (a "상품 이미지" label, ‹ › arrows, a "1/6" counter, a small red badge).
   The container clips; the image is scaled up slightly so those extreme
   edges are cropped out. Aspect ratio is never distorted (object-fit:cover). */
.pmg {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--cream-2);
}
.pmg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transform-origin: center;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.card:hover .pmg img { transform: scale(1.15); }
.tile:hover .pmg img { transform: scale(1.15); }

/* ============================================================
   Marquee / trust strip
   ============================================================ */
.strip {
  border-block: 1px solid var(--ink-line);
  background: var(--paper);
}
.strip__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 40px;
  padding-block: 22px;
}
.strip__item {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute);
}

/* ============================================================
   Section headers
   ============================================================ */
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 52px);
}
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.sec-head .eyebrow { margin-bottom: 14px; display: block; }

/* ============================================================
   Product grid / cards
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card { display: block; }
.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.card__media .ph { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.card:hover .card__media .ph { transform: scale(1.045); }
.card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--cream); color: var(--ink);
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
}
.card__quick {
  position: absolute; inset-inline: 14px; bottom: 14px; z-index: 3;
  background: var(--ink); color: var(--cream);
  text-align: center; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px; border-radius: var(--radius);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.card:hover .card__quick { opacity: 1; transform: translateY(0); }
.card__cat { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); }
.card__name { font-family: var(--serif); font-size: 1.16rem; margin: 5px 0 6px; }
.card__price { font-size: 0.92rem; color: var(--ink); letter-spacing: 0.02em; }

/* ============================================================
   Category tiles
   ============================================================ */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.tile {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius);
  overflow: hidden; display: flex; align-items: flex-end;
}
.tile .ph, .tile .pmg { position: absolute; inset: 0; }
.tile__cap {
  position: relative; z-index: 2; width: 100%;
  padding: 20px; color: var(--cream);
  background: linear-gradient(to top, rgba(30,58,47,0.72), transparent 78%);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.tile__cap h3 { font-size: 1.25rem; color: var(--cream); }
.tile__cap span { font-size: 1.1rem; }
.tile:hover .ph { transform: scale(1.05); }

/* ============================================================
   Feature band (Kakao Friends)
   ============================================================ */
.band { background: var(--ink); color: var(--cream); overflow: hidden; }
.band__inner {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.band__inner .eyebrow { color: rgba(246,244,239,0.7); }
.band h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3.2rem); margin: 16px 0 20px; }
.band p { color: rgba(246,244,239,0.78); max-width: 46ch; margin-bottom: 30px; }
.band .btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.band .btn:hover { background: transparent; color: var(--cream); }
.band__art { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.band__art .ph, .band__art .pmg { aspect-ratio: 3/4; border-radius: var(--radius); }
.band__art .ph:nth-child(2), .band__art .pmg:nth-child(2) { margin-top: 34px; }

/* ============================================================
   Story teaser (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 5vw, 76px); }
.split__media { aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; }
.split h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: 16px 0 20px; }
.split p { color: var(--ink-mute); margin-bottom: 26px; max-width: 48ch; }

/* ============================================================
   Newsletter
   ============================================================ */
.news { background: var(--paper); }
.news__inner { max-width: 640px; margin-inline: auto; text-align: center; }
.news h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: 14px 0 16px; }
.news p { color: var(--ink-mute); margin-bottom: 30px; }
.news__form { display: flex; gap: 12px; }
.news__form input {
  flex: 1; font-family: var(--sans); font-size: 0.95rem;
  padding: 15px 18px; border: 1px solid var(--ink-line);
  background: var(--white); color: var(--ink); border-radius: var(--radius);
}
.news__form input:focus { outline: none; border-color: var(--ink); }
.news small { display: block; margin-top: 16px; color: var(--ink-mute); font-size: 0.74rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: rgba(246,244,239,0.8); }
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding-block: clamp(52px, 7vw, 88px);
}
.footer .brand { text-align: left; grid-column: auto; color: var(--cream); }
.footer .brand small { color: rgba(246,244,239,0.6); }
.footer__col h4 {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(246,244,239,0.55); margin-bottom: 18px;
}
.footer__col a { display: block; padding: 6px 0; font-size: 0.9rem; color: rgba(246,244,239,0.82); transition: color .3s ease; }
.footer__col a:hover { color: var(--cream); }
.footer__intro { max-width: 34ch; font-size: 0.92rem; line-height: 1.7; margin: 18px 0 22px; }
.footer__bottom {
  border-top: 1px solid rgba(246,244,239,0.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-block: 24px; font-size: 0.74rem; letter-spacing: 0.06em;
  color: rgba(246,244,239,0.6);
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.crumb { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); padding-top: clamp(24px, 4vw, 44px); }
.crumb a:hover { color: var(--ink); }
.crumb span { color: var(--ink); }

/* ============================================================
   Collection
   ============================================================ */
.coll-head { padding-top: clamp(18px, 3vw, 30px); padding-bottom: clamp(30px, 4vw, 46px); }
.coll-head h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 14px 0 16px; }
.coll-head p { color: var(--ink-mute); max-width: 52ch; }

.toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-block: 18px; border-block: 1px solid var(--ink-line); margin-bottom: clamp(28px, 4vw, 48px);
}
.toolbar__filters { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 16px; border: 1px solid var(--ink-line); border-radius: 999px;
  background: transparent; color: var(--ink); transition: all .3s ease;
}
.chip:hover, .chip[aria-pressed="true"] { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.toolbar__meta { display: flex; align-items: center; gap: 18px; }
.toolbar__count { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.select {
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--ink-line); background: var(--white); color: var(--ink);
  padding: 9px 14px; border-radius: 999px;
}

/* ============================================================
   PDP
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 72px); align-items: start; padding-top: clamp(24px, 3vw, 40px); }
.gallery { position: sticky; top: 150px; }
.gallery__main { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.thumb { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid transparent; cursor: pointer; transition: border-color .3s ease; padding: 0; background: none; }
.thumb[aria-current="true"] { border-color: var(--ink); }
.thumb .pmg img { transform: scale(1.06); }
.thumb:hover .pmg img { transform: scale(1.1); }

.pdp__info .eyebrow { display: block; margin-bottom: 14px; }
.pdp__info h1 { font-size: clamp(2rem, 3.6vw, 3.1rem); margin-bottom: 16px; }
.pdp__price { font-size: 1.4rem; font-family: var(--serif); margin-bottom: 20px; }
.pdp__desc { color: var(--ink-mute); margin-bottom: 30px; max-width: 46ch; }
.pdp__rating { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--ink-mute); margin-bottom: 22px; }
.pdp__rating .stars { color: var(--accent); letter-spacing: 0.15em; }

.field { margin-bottom: 26px; }
.field__label { display: flex; justify-content: space-between; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  font-size: 0.76rem; letter-spacing: 0.04em;
  padding: 11px 18px; border: 1px solid var(--ink-line); border-radius: var(--radius);
  background: transparent; color: var(--ink); transition: all .3s ease;
}
.swatch:hover, .swatch[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--cream); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--ink-line); border-radius: var(--radius); overflow: hidden; }
.qty button { width: 44px; height: 46px; background: none; border: 0; font-size: 1.1rem; color: var(--ink); }
.qty button:hover { background: var(--cream-2); }
.qty input { width: 48px; height: 46px; text-align: center; border: 0; font-family: var(--sans); font-size: 1rem; background: transparent; color: var(--ink); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp__buy { display: flex; gap: 14px; align-items: stretch; margin: 8px 0 26px; }
.pdp__buy .btn { flex: 1; }

.pdp__meta { border-top: 1px solid var(--ink-line); padding-top: 24px; }
.pdp__meta dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 22px; margin: 0; font-size: 0.9rem; }
.pdp__meta dt { color: var(--ink-mute); letter-spacing: 0.04em; }
.pdp__meta dd { margin: 0; }

/* accordions */
.acc { border-bottom: 1px solid var(--ink-line); }
.acc__head {
  width: 100%; text-align: left; background: none; border: 0; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
}
.acc__head .plus { font-family: var(--sans); font-size: 1.3rem; transition: transform .3s ease; }
.acc[open] .plus { transform: rotate(45deg); }
.acc__body { padding-bottom: 22px; color: var(--ink-mute); font-size: 0.94rem; }
.acc__body ul { display: grid; gap: 8px; }
.acc__body li { position: relative; padding-left: 18px; }
.acc__body li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* PDP full detail image */
.detail-shot { margin-top: clamp(56px, 8vw, 96px); }
.detail-shot .eyebrow { display: block; text-align: center; margin-bottom: 8px; }
.detail-shot h2 { text-align: center; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 34px; }
.detail-shot__frame {
  max-width: 720px; margin-inline: auto;
  border: 1px solid var(--ink-line); border-radius: var(--radius);
  overflow: hidden; background: var(--white);
}
.detail-shot__frame img { width: 100%; }

/* ============================================================
   About
   ============================================================ */
.about-hero { text-align: center; }
.about-hero .display { max-width: 16ch; margin: 22px auto 26px; }
.about-hero .lede { max-width: 56ch; margin-inline: auto; }

.figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); text-align: center; }
.figure .num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); display: block; }
.figure .lbl { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); }
.value h3 { font-size: 1.35rem; margin-bottom: 10px; }
.value p { color: var(--ink-mute); font-size: 0.94rem; }
.value .n { font-family: var(--serif); color: var(--accent); font-size: 1rem; display: block; margin-bottom: 12px; }

.pull {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.3;
  text-align: center; max-width: 22ch; margin-inline: auto;
  letter-spacing: -0.01em;
}
.pull .accent { color: var(--accent); font-style: italic; }

/* ============================================================
   Corner badge
   ============================================================ */
.dir-badge {
  position: fixed; z-index: 200; right: 16px; bottom: 16px;
  background: var(--ink); color: var(--cream);
  font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(30,58,47,0.22);
}
.dir-badge .dot { color: var(--accent); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .header__inner { grid-template-columns: auto 1fr auto; }
  .brand { grid-column: 2; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    grid-column: 1; width: 40px; height: 40px; background: none; border: 0; color: var(--ink);
  }
  .header__actions { grid-column: 3; }
  .nav {
    grid-column: 1 / -1;
    max-height: 0; overflow: hidden; transition: max-height .4s ease;
  }
  .nav.open { max-height: 520px; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 4px; padding-top: 10px; }
  .nav__list a { padding: 10px 0; font-size: 0.86rem; }

  .hero__inner, .band__inner, .split, .pdp { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; }
  .band__art { max-width: 420px; }
  .split__media { order: -1; }
  .gallery { position: static; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .figures, .values { grid-template-columns: 1fr; gap: 34px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .news__form { flex-direction: column; }
  .sec-head { align-items: flex-start; }
  .pdp__buy { flex-direction: column; }
  .qty { width: 100%; justify-content: space-between; }
}
@media (max-width: 400px) {
  .grid, .grid--3, .tiles { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}
