:root {
  
  
  --sumi: #1B2A3A;          
  --sumi-2: #2B3E52;        
  
  --sumi-deep: #111B26;      
  --scrim: #0E161F;          
  --accent: #A32B24;        
  
  --accent-soft: #E7A79F;   

  --paper: #FFFFFF;         
  --paper-2: #F3F6F9;       
  --ink: #222A33;           
  --ink-muted: #5E6A76;
  
  --line: #DCE3EA;
  
  --error: #A03A28;
  --error-ring: color-mix(in srgb, var(--error) 14%, transparent);  

  
  --font-head: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  
  --font-en: "Oswald", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif; 
  --font-body: "BIZ UDPGothic", "Yu Gothic", "Noto Sans JP", sans-serif;

  --wrap: 1080px;
  --radius: 10px;
  --shadow: 0 12px 32px rgba(27, 42, 58, 0.14);
  --shadow-sm: 0 3px 12px rgba(27, 42, 58, 0.08);
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
}
img { max-width: 100%; display: block; }

.hero__lead, .head p, .feature p, .news-cta p, .page-hero p,
.svc__desc, .svc-note, .menu-note, .equip-lead, .stat__label,
.faq-item .faq-a, .dish__desc, .taglist-lead, .form-note, .field__error,
.news-band__head p, .shave p { word-break: auto-phrase; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.5; margin: 0; letter-spacing: .04em; }


.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto;
  padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; scroll-margin-top: 68px; }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--sumi); color: #fff; }


.ph {
  position: relative;
  
  background: var(--paper-2);  
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--sumi) 5%, transparent),
      color-mix(in srgb, var(--sumi) 2%, transparent)),
    repeating-linear-gradient(45deg,
      color-mix(in srgb, var(--paper-2) 98%, var(--sumi)) 0 12px,
      color-mix(in srgb, var(--paper-2) 95%, var(--sumi)) 12px 24px);
  display: grid; place-items: center;
  color: var(--ink-muted);
  font-size: .8rem; letter-spacing: .06em; text-align: center;
  border-radius: var(--radius);
  padding: 1rem;
}
.ph::after { content: attr(data-label); }


:where(a, button, summary, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.hero :where(a, button):focus-visible,
.section--dark :where(a, button):focus-visible,
.site-footer :where(a, button):focus-visible,
.cta-band :where(a, button):focus-visible,
.page-hero :where(a, button):focus-visible { outline-color: var(--accent-soft); }


.skip-link {
  position: absolute; left: .5rem; top: -100px; z-index: 100;
  background: var(--sumi); color: #fff; text-decoration: none;
  font-weight: 700; font-size: .9rem; line-height: 1.5;
  padding: .7rem 1.1rem; border-radius: 0 0 6px 6px;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }


.demobar {
  background: var(--sumi);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  text-align: center;
  padding: .4rem 1rem;
  letter-spacing: .02em;
}
.demobar b { color: var(--accent-soft); font-weight: 700; }


.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);  
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }

.brand__mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sumi);
  display: grid; place-items: center; flex: none;
}
.brand__mark span {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--accent-soft);
}
.brand__name { font-family: var(--font-head); font-weight: 700; color: var(--sumi); font-size: 1.2rem; line-height: 1.4; letter-spacing: .06em; }
.brand__name small { display: block; font-size: .6rem; letter-spacing: .3em; color: var(--ink-muted); font-weight: 600; font-family: var(--font-en); }


.nav { display: flex; align-items: center; gap: clamp(.8rem, 1.5vw, 1rem); }


.nav > a { white-space: nowrap; }
.nav a { text-decoration: none; }
.nav a:not(.btn) {
  color: var(--sumi); font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  letter-spacing: .08em; line-height: 1.5; position: relative; padding: .2rem 0;
  white-space: nowrap;  
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width .2s ease;
}
.nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--sumi); margin: 5px 0; transition: .25s; }


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; line-height: 1.5; letter-spacing: .08em;
  padding: .8rem 1.7rem; border-radius: 6px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; font-size: 1rem;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--sumi); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--sumi-2); }

.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { filter: brightness(1.08); }

.hero .btn--accent,
.section--dark .btn--accent { border-color: var(--accent-soft); }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { border-color: #fff; }
.btn--sm { padding: .5rem 1.15rem; font-size: .88rem; }



.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1100px 480px at 78% -8%, var(--sumi-2), transparent 60%),
    linear-gradient(165deg, var(--sumi) 46%, var(--sumi-deep) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.6rem;
  align-items: center; padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem; letter-spacing: .18em;
  color: rgba(255,255,255,.9); line-height: 1.5;
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-soft); flex: none; }
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.05rem); margin: 1.2rem 0 .6rem; line-height: 1.55;
  letter-spacing: .05em;
}
.hero h1 .accent { color: var(--accent-soft); }
.hero__lead { font-size: 1.02rem; color: rgba(255,255,255,.82); max-width: 34ch; }
.hero__cta { display: flex; gap: .8rem; margin-top: 1.9rem; flex-wrap: wrap; }

.hero__facts {
  display: flex; gap: 1.5rem; margin-top: 2.1rem; flex-wrap: wrap;
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.hero__facts b { color: #fff; font-family: var(--font-head); font-weight: 700; margin-right: .35em; }
.hero__photo { aspect-ratio: 4/3; box-shadow: 0 30px 60px rgba(0,0,0,.4); }
img.hero__photo { width: 100%; height: auto; object-fit: cover; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12); }


.hero__scrim { display: none; }
.hero--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  
  background: url(../img/hero.jpg) center 45% / cover;
}
.hero--photo .hero__scrim {
  display: block; position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,.6);  
  
  background: linear-gradient(95deg,
      color-mix(in srgb, var(--scrim) 90%, transparent) 0%,
      color-mix(in srgb, var(--scrim) 84%, transparent) 30%,
      color-mix(in srgb, var(--scrim) 78%, transparent) 56%,
      color-mix(in srgb, var(--scrim) 14%, transparent) 100%);
}
.hero--photo .hero__grid { grid-template-columns: 1fr; padding: clamp(4.5rem, 15vh, 8rem) 0; }
.hero--photo .hero__photo { display: none; }
.hero--photo .hero__copy { max-width: 37rem; }
.hero--photo .hero__lead { text-shadow: 0 1px 12px rgba(0,0,0,.35); }


@media (max-width: 860px) {
  .hero--photo .hero__scrim {
    background: rgba(0,0,0,.6);  
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--scrim) 84%, transparent) 0%,
      color-mix(in srgb, var(--scrim) 76%, transparent) 50%,
      color-mix(in srgb, var(--scrim) 86%, transparent) 100%);
  }
}



.head {
  display: grid;
  
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  
  
  align-items: start;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  text-align: left;
  
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 1.2rem;
  margin-bottom: 2.8rem;
}
.head:not(:has(> p)) { grid-template-columns: 1fr; }

.head .eyebrow {
  display: block;
  color: var(--ink-muted);
  font-family: var(--font-en); font-weight: 600; font-size: 1rem; letter-spacing: .26em;
  line-height: 1.5; text-transform: uppercase;
}
.head h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); margin-top: 0; color: var(--sumi); line-height: 1.5; }
.section--dark .head h2 { color: #fff; }
.head p {
  grid-column: 2;
  
  grid-row: 2; align-self: end; justify-self: end;
  max-width: 46ch; text-align: right; color: var(--ink-muted);
  
  margin: 1rem 0 0;
}

.head .eyebrow { grid-column: 1; grid-row: 1; }
.head h2 { grid-column: 1; grid-row: 2; }

.head .eyebrow + h2 { margin-top: .55rem; }

@media (max-width: 760px) {
  .head { grid-template-columns: 1fr; }
  .head p { grid-column: 1; grid-row: 3; justify-self: stretch; text-align: inherit; }
}
.section--dark .head { border-bottom-color: var(--accent-soft); }
.section--dark .head .eyebrow { color: rgba(255,255,255,.72); }
.section--dark .head p { color: rgba(255,255,255,.72); }



.head--left {
  grid-template-columns: 1fr; margin-bottom: 2.4rem; }

.head--left p { grid-column: 1; grid-row: 3; justify-self: stretch; text-align: inherit; }
.head--left p { max-width: 44rem; }


.section--news { padding: clamp(2.6rem, 5.5vw, 3.6rem) 0; }
.news-band { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2.4rem; align-items: start; }

.news-band__head {
  margin-bottom: 0; grid-template-columns: 1fr;
  border-bottom: 0; padding-bottom: 0;
}
.news-band__head p { grid-column: 1; grid-row: 3; justify-self: stretch; align-self: auto; text-align: inherit; }
.news-band__head .btn { grid-column: 1; grid-row: 4; justify-self: start; align-self: auto; }
.news-band__head p { color: var(--ink-muted); font-size: .93rem; margin: .8rem 0 1.2rem; max-width: none; }
.news-band__head h2 { font-size: clamp(1.45rem, 3.4vw, 1.9rem); color: var(--sumi); }



.news-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.news-list[hidden] { display: none; }
.news-list li { display: flex; gap: 1.1rem; align-items: baseline; padding: .85rem .2rem; border-bottom: 1px solid var(--line); }
.news-list .d { font-family: var(--font-en); color: var(--accent); font-size: .9rem; letter-spacing: .06em; flex: none; line-height: 1.6; font-weight: 600; }
.news-list .t { color: var(--ink); text-decoration: none; font-size: .95rem; line-height: 1.6; min-width: 0; }
.news-list .t:hover { color: var(--accent); text-decoration: underline; }

.news-band:has(.news-list[hidden]) { grid-template-columns: 1fr; gap: 0; }


.news-cta { text-align: center; max-width: 620px; margin-inline: auto; }
.news-cta p { color: rgba(255,255,255,.82); margin: .6rem 0 1.7rem; }
.section--dark .news-list { border-top-color: rgba(255,255,255,.14); }
.section--dark .news-list li { border-bottom-color: rgba(255,255,255,.14); }
.section--dark .news-list .d { color: var(--accent-soft); }
.section--dark .news-list .t { color: rgba(255,255,255,.92); }
.section--dark .news-list .t:hover { color: #fff; }


.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.dish {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.dish .ph { aspect-ratio: 4/3; border-radius: 0; }
.dish__img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; }
.dish__body { padding: 1.15rem 1.25rem 1.4rem; }
.dish__name {
  font-size: 1.12rem; color: var(--sumi); line-height: 1.5;
  display: flex; justify-content: space-between; align-items: baseline; gap: .6rem;
}
.dish__price { font-family: var(--font-head); font-weight: 700; color: var(--accent); white-space: nowrap; }
.dish__price small { font-size: .68em; font-weight: 600; }
.dish__desc { color: var(--ink-muted); font-size: .9rem; margin: .55rem 0 0; }

.dish--text .dish__body { padding: 1.25rem 1.3rem 1.4rem; }
.dish.is-soldout .dish__name { text-decoration: line-through; opacity: .5; }
.menu-note { text-align: center; color: var(--ink-muted); font-size: .85rem; margin-top: 1.7rem; }


#menu:has(#menuGrid[hidden]) { padding-block: clamp(2.8rem, 6vw, 4.2rem); }
#menu:has(#menuGrid[hidden]) .head { margin-bottom: 1.5rem; }
#menu:has(#menuGrid[hidden]) .menu-note { margin-top: 0; }


.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.feature + .feature { margin-top: 3.2rem; }
.feature--rev .feature__media { order: 2; }
.feature__media .ph, .feature__ph { aspect-ratio: 5/4; }
.feature__img { width: 100%; height: auto; aspect-ratio: 5/4; object-fit: cover; display: block; border-radius: var(--radius); }
.feature__kicker {
  font-family: var(--font-head); font-weight: 600; color: var(--accent); font-size: .92rem;
  letter-spacing: .16em; line-height: 1.6;
}
.feature h3 { font-size: clamp(1.35rem, 3.4vw, 1.85rem); color: var(--sumi); margin: .5rem 0 .9rem; line-height: 1.5; }
.feature p { color: var(--ink-muted); }


.shave { display: grid; grid-template-columns: 1fr 1.05fr; gap: 2.8rem; align-items: center; }
.shave__img { width: 100%; height: auto; aspect-ratio: 5/4; object-fit: cover; display: block; border-radius: var(--radius); }
.shave p { color: rgba(255,255,255,.82); margin: 0; }

.shave-list { list-style: none; padding: 0; margin: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.16); }
.shave-list li { display: flex; gap: 1.1rem; align-items: baseline; padding: .8rem .2rem; border-bottom: 1px solid rgba(255,255,255,.16); }
.shave-list b {
  
  flex: none; width: 7em; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; letter-spacing: .1em; line-height: 1.6;
}
.shave-list span { color: rgba(255,255,255,.82); font-size: .93rem; line-height: 1.7; min-width: 0; }
.shave__cta { margin-top: 1.6rem; display: flex; gap: .8rem; flex-wrap: wrap; }



.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px; gap: 1rem;
}
.gallery-item { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery-item .ph { position: absolute; inset: 0; border-radius: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem .9rem .7rem;
  background: linear-gradient(0deg, rgba(0,0,0,.8), transparent);  
  background: linear-gradient(0deg, color-mix(in srgb, var(--scrim) 86%, transparent), transparent);
  color: #fff; font-size: .82rem; letter-spacing: .04em; line-height: 1.5;
}


.gallery-link { position: absolute; inset: 0; display: block; text-decoration: none; color: inherit; }
.gallery-link:hover figcaption { text-decoration: underline; }


.info-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: start; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: .9rem .2rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { width: 8em; color: var(--sumi); font-family: var(--font-head); font-weight: 700; font-size: .95rem; line-height: 1.6; }
.info-table td { color: var(--ink-muted); }
.info-tel { color: var(--sumi); font-weight: 700; }
.info-map { aspect-ratio: 4/3; }
.info-map iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius); display: block; }


.info-line { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding: 1rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.info-line__qr { width: 88px; height: 88px; flex: none; border-radius: 4px; }

.info-line__qr:not(.ph) { background: #fff; padding: 5px; border: 1px solid var(--line); }
.info-line__text { min-width: 0; }   
.info-line__label { margin: 0 0 .3rem; font-family: var(--font-head); font-weight: 700; color: var(--sumi); font-size: .92rem; }
.info-line__text p:last-child { margin: 0; font-size: .86rem; line-height: 1.6; color: var(--ink-muted); }


.form-wrap { max-width: 640px; margin-inline: auto; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 700; color: var(--sumi); margin-bottom: .35rem; font-size: .95rem; }
.field .req { color: var(--accent); font-size: .78em; margin-left: .4rem; font-weight: 700; }

.field .opt { color: var(--ink-muted); font-size: .78em; margin-left: .4rem; font-weight: 400; }
.field input, .field textarea {
  width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 6px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sumi);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sumi) 10%, transparent);
}
.field textarea { min-height: 140px; resize: vertical; }
.field small.hint { color: var(--ink-muted); font-size: .8rem; }


.field.is-invalid label { color: var(--error); }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--error); }
.field.is-invalid input:focus, .field.is-invalid textarea:focus {
  border-color: var(--error); box-shadow: 0 0 0 3px var(--error-ring);
}
.field__error {
  display: flex; gap: .45em; align-items: baseline;
  margin: .4rem 0 0; font-size: .85rem; line-height: 1.7; color: var(--error);
  word-break: auto-phrase;
}

.field__error::before { content: "!"; font-weight: 700; flex: none; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cf-turnstile { display: flex; justify-content: center; margin: 1.4rem 0 0; }
.form-actions { text-align: center; margin-top: 1.7rem; }
.form-status { margin-top: 1.2rem; padding: .9rem 1rem; border-radius: 6px; font-size: .92rem; display: none; }
.form-status.is-ok { display: block; background: #EDF3E7; color: #3E6B34; border: 1px solid #CBDCBC; }
.form-status.is-err { display: block; background: #F9ECE8; color: var(--error); border: 1px solid #EACDC2; }
.form-status ul { margin: .4rem 0 0; padding-left: 1.1rem; }


.form-sent { display: none; margin: 1.2rem auto 0; max-width: 30rem;
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  padding: 1.9rem 1.9rem 1.7rem; }
.form-sent:focus { outline: none; }
.form-wrap.is-sent #contactForm { display: none; }
.form-wrap.is-sent .form-sent { display: block; }
.form-wrap.is-sent .form-note { display: none; }
.form-sent__head { display: flex; align-items: center; gap: .65rem; margin: 0 0 1rem; }
.form-sent__icon { flex: none; width: 1.5rem; height: 1.5rem; color: var(--ink-muted); }
.form-sent__title { font-family: var(--font-head); font-size: 1.25rem; line-height: 1.5;
  font-weight: 600; color: var(--sumi); margin: 0; letter-spacing: .05em; }

.form-sent__body { margin: 0; font-size: .95rem; line-height: 1.95; color: var(--ink); word-break: auto-phrase; }
.form-sent__body strong { color: var(--sumi); font-weight: 700; }
.form-sent__note { margin: 1.15rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line);
  font-size: .875rem; line-height: 1.85; color: var(--ink-muted); word-break: auto-phrase; }
.form-sent__tel { font-weight: 700; color: var(--ink); text-decoration: underline; white-space: nowrap; }
.form-sent__tel:hover { color: var(--accent); }



.site-footer { background: var(--sumi-deep); color: rgba(255,255,255,.72); padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer .brand__name { color: #fff; }
.site-footer h4 { font-family: var(--font-head); font-weight: 600; letter-spacing: .12em; color: #fff; font-size: .95rem; line-height: 1.6; margin: 0 0 .8rem; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: var(--accent-soft); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1.3rem; font-size: .78rem; color: rgba(255,255,255,.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }


@media (max-width: 860px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .feature, .info-grid, .footer-grid, .news-band, .shave { grid-template-columns: 1fr; gap: 1.6rem; }
  .feature--rev .feature__media { order: 0; }
  
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { order: -1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-item--wide { grid-column: span 2; }
  
  .news-band__head p { margin-bottom: 1rem; }
}


@media (max-width: 1024px) {
  .nav {
    
    --drawer-top: 68px;
    --drawer-gap: 7rem;
    position: fixed; inset: var(--drawer-top) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    
    max-height: calc(100vh - var(--drawer-top) - var(--drawer-gap));
    max-height: calc(100svh - var(--drawer-top) - var(--drawer-gap));
    overflow-y: auto; overscroll-behavior: contain;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.25rem;
    
    
    box-shadow: var(--shadow);  
    box-shadow: var(--shadow), inset 0 -14px 12px -12px color-mix(in srgb, var(--sumi) 42%, transparent);
    transform: translateY(calc(-100% - var(--drawer-top) - var(--drawer-gap)));
    
    visibility: hidden;
    transition: transform .28s ease, visibility .28s;
  }
  
  body:not(:has(.demobar)) .nav { --drawer-gap: 1rem; }

  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform .28s ease, visibility .28s;
  }
  .nav a:not(.btn) { padding: .85rem .2rem; border-bottom: 1px solid var(--line); }
  
  .nav a.btn { margin-top: .9rem; white-space: normal; }
  .nav-toggle { display: block; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}


@media (max-width: 520px) {
  .site-header .wrap { gap: .6rem; }
  .header-right { gap: .6rem; }                 
  .brand__name { font-size: clamp(1rem, 4.4vw, 1.2rem); }
  .lang-switch { font-size: .72rem; }           
  .lang-switch a, .lang-switch span { padding: .34rem .5rem; }
}
@media (max-width: 520px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .gallery-item--tall { grid-row: span 2; }
  
  .shave-list li { flex-direction: column; gap: .1rem; }
  .shave-list b { width: auto; }
}


.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; gap: .8rem; align-items: baseline;
  padding: 1.05rem 1.15rem; font-weight: 700; color: var(--sumi);
  font-family: var(--font-head); line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q"; color: var(--accent); font-family: var(--font-en); font-weight: 600; flex: none; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }

.faq-item summary::after {
  content: ""; flex: none; margin-left: auto; align-self: center;
  width: .46em; height: .46em;
  border-right: 2px solid var(--ink-muted); border-bottom: 2px solid var(--ink-muted);
  transform: translateY(-.12em) rotate(45deg);
  transition: transform .2s ease, border-color .2s ease;
}
.faq-item[open] summary::after { transform: translateY(.12em) rotate(225deg); }
.faq-item summary:hover { background: var(--paper-2); }
.faq-item summary:hover::after { border-color: var(--accent); }
.faq-item .faq-a { padding: .95rem 1.15rem 1.1rem; color: var(--ink-muted); display: flex; gap: .8rem; line-height: 1.9; }
.faq-item .faq-a::before { content: "A"; color: var(--sumi); font-family: var(--font-en); font-weight: 600; flex: none; }
.faq-item .faq-a p { margin: 0; }



.form-note {
  margin: 0 0 1.5rem; padding: .1rem 0 .1rem .9rem;
  border-left: 2px solid var(--accent);
  font-size: .88rem; color: var(--ink-muted); line-height: 1.8;
  word-break: auto-phrase;
}
.form-note b { color: var(--sumi); }
.form-note a { color: var(--sumi); font-weight: 700; white-space: nowrap; }  


.float-cta { display: none; }
@media (max-width: 860px) {
  
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .float-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
    padding: .6rem calc(.8rem + env(safe-area-inset-right))
             calc(.6rem + env(safe-area-inset-bottom)) calc(.8rem + env(safe-area-inset-left));
    
    background: var(--paper);  
    background: color-mix(in srgb, var(--paper) 94%, transparent);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }
  .float-cta .btn { padding: .75rem .4rem; font-size: .93rem; white-space: nowrap; }

  
  .footer-links { gap: .15rem; }
  .footer-links a { display: block; padding: .4rem 0; }

  
  .float-cta { transition: transform .25s ease, visibility .25s; }
  .float-cta.is-hidden { transform: translateY(120%); visibility: hidden; }

  
  body.is-form-sent .float-cta { grid-template-columns: 1fr; }
  body.is-form-sent .float-cta .btn--accent { display: none; }
}


@media (prefers-reduced-motion: reduce) {
  
  html { scroll-behavior: auto; }
  * { scroll-behavior: auto; transition: none !important; }
}


.is-confirming .field,
.is-confirming .form-actions,
.is-confirming .cf-turnstile { display: none; }
.form-confirm { margin-top: .5rem; }

.form-confirm:focus { outline: none; }
.form-confirm__lead { font-weight: 700; color: var(--ink); margin: 0 0 1.1rem; }
.form-confirm__list { margin: 0; border-top: 1px solid var(--line); }
.form-confirm__list dt { font-family: var(--font-body); font-weight: 700; color: var(--ink-muted); font-size: .8rem; letter-spacing: .04em; padding: .9rem 0 .15rem; }
.form-confirm__list dd { margin: 0 0 .1rem; padding: 0 0 .9rem; color: var(--ink); border-bottom: 1px solid var(--line); white-space: pre-wrap; word-break: break-word; line-height: 1.7; }
.form-confirm__list dd.is-empty { color: var(--ink-muted); font-style: italic; }
.form-confirm__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 1.6rem; }
.form-confirm__back { background: #fff; color: var(--ink); border: 1px solid var(--ink-muted); font-weight: 700; }

.form-confirm__back:hover { background: var(--paper-2); border-color: var(--ink); }
.form-confirm__back:hover { background: color-mix(in srgb, var(--ink-muted) 12%, #fff); }
@media (max-width: 520px) {
  .form-confirm__actions { flex-direction: column-reverse; }
  .form-confirm__actions .btn { width: 100%; }
}


.nf { min-height: 100svh; display: grid; place-items: center; text-align: center;
  padding: clamp(2.5rem, 8vw, 5rem) 0; }
.nf__code { font-family: var(--font-head); font-weight: 700; line-height: 1;
  font-size: clamp(3.2rem, 12vw, 5.5rem); letter-spacing: .06em;
  color: var(--sumi); opacity: .16; margin: 0 0 .5rem; }
.nf__title { font-size: clamp(1.3rem, 4.5vw, 1.75rem); margin: 0 0 1rem; }
.nf__lead { color: var(--ink-muted); margin: 0 auto 2.2rem; max-width: 34rem; }
.nf__links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 0; }
.nf__links .btn { min-width: 11rem; }


.nf__links .btn:not(.btn--primary) { border-color: var(--ink-muted); color: var(--sumi); }
.nf__links .btn:not(.btn--primary):hover { border-color: var(--sumi); }
.nf__brand { margin: 2.8rem 0 0; font-family: var(--font-head); font-size: .8rem;
  letter-spacing: .16em; color: var(--ink-muted); }
