/* ============ Base ============ */
:root {
  --bg: #f7f5f1;
  --bg-2: #efece5;
  --ink: #222;
  --ink-2: #555;
  --line: #d9d4c7;
  --accent: #8a7a5c;
  --accent-2: #3f4a3d;
  --radius: 2px;
  --max: 1180px;
  --serif: "Noto Serif JP", "Cormorant Garamond", serif;
  --sans: "Noto Sans JP", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(247,245,241,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.logo .brand { white-space: nowrap; }
.logo .sub { color: var(--accent); font-size: 13px; margin-left: 4px; white-space: nowrap; }
.site-header .logo .brand img {
  display: block;
  height: 32px;
  width: auto;
}
/* Responsive line-break helpers */
.br-sp { display: none; }
.br-pc { display: inline; }
.site-header nav { display: flex; gap: 28px; }
.site-header nav a {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  transition: color .2s;
}
.site-header nav a:hover { color: var(--accent); }

/* ============ First View ============ */
.fv { background: var(--bg); }
.fv-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-color: var(--bg, #6b5b47);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 64px;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0) 35%, rgba(0,0,0,0.55));
}
.slide.active { opacity: 1; }
.fv-hero-title {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-family: var(--serif);
  padding-bottom: 24px;
}
.fv-hero-kicker {
  display: block;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.fv-hero-main {
  display: block;
  font-size: clamp(34px, 5.6vw, 68px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.fv-hero-sub {
  display: block;
  margin-top: 14px;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: #d4b068;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.slide-label {
  position: relative;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none; padding: 0; cursor: pointer;
  transition: background .2s;
}
.dot.active { background: #fff; }

.fv-caption {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 32px 80px;
  text-align: center;
}
.fv-caption .company {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin: 0 0 12px;
}
.event-name {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.22em;
  color: var(--accent-2);
  margin: 0 0 18px;
}
.event-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
  line-height: 1.5;
}
.sub-title {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  margin: 0 0 28px;
  letter-spacing: 0.08em;
}
.fv-caption .lead {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 2.2;
  margin: 0;
}
.fv-caption .lead strong {
  color: var(--ink);
  font-weight: 700;
}

/* ============ Section Heads ============ */
.sec-head {
  text-align: center;
  max-width: var(--max);
  margin: 0 auto 48px;
  padding: 0 32px;
}
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.sec-head p {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0;
}
.sec-head .items-headline {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.sec-head .items-desc {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 2;
}
.sec-head .items-desc strong { color: var(--ink); font-weight: 700; }
.sec-head .items-headline strong { font-weight: 700; }

/* ============ Points ============ */
.points {
  background: var(--bg-2);
  padding: 96px 0;
}
.points-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.point {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.point .num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 10px;
}
.point h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.04em;
}
.point .point-lead {
  font-size: 13.5px;
  color: var(--ink);
  margin: 0 0 14px;
}
.point .small {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0;
}
.chips {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chips li {
  background: var(--bg);
  padding: 8px 14px;
  font-size: 12.5px;
  color: var(--ink-2);
  border-left: 2px solid var(--accent);
}
.sec-head .points-intro { line-height: 2; }
.point-notes {
  margin-top: 18px;
}
.point-notes p {
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.8;
  margin: 0 0 4px;
}
.sec-head .points-intro strong { color: var(--ink); font-weight: 700; }
.point .point-lead strong { color: var(--ink); font-weight: 700; }
.point .point-lead.center { text-align: center; line-height: 2; }
.point .small strong { color: var(--ink); font-weight: 700; }
.point .small + .small { margin-top: 10px; }
.point-image {
  margin-top: auto;
  padding-top: 36px;
  width: 100%;
  background: transparent;
}
.point-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}
.point-examples {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.point-examples .ex-title {
  font-size: 12.5px;
  color: var(--ink-2);
  margin: 0 0 8px;
}
.point-examples .ex-head {
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 700;
  margin: 10px 0 6px;
}
.point-examples .ex-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.point-examples .ex-list li {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ============ Items ============ */
.items {
  padding: 96px 0;
}
.items-block {
  max-width: var(--max);
  margin: 0 auto 72px;
  padding: 0 32px;
}
.items-block:last-child { margin-bottom: 0; }
.items-head {
  border-top: 1px solid var(--ink);
  padding: 24px 0 28px;
  margin-bottom: 28px;
}
.items-head.detail .head-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.items-head.detail .cat-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.items-head.detail .cat-sub {
  font-size: 0.55em;
  color: var(--ink-2);
  margin-left: 6px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.items-head.detail .catchphrase {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.items-head.detail .detail-desc {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 2;
  margin: 0;
  max-width: 720px;
}

/* SDGs placeholder badge */
.sdgs-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--line);
  line-height: 1.1;
  font-family: var(--sans);
  flex-shrink: 0;
}
.sdgs-badge .sdgs-top {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #222;
}
.sdgs-badge .sdgs-mid {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #222;
}
.sdgs-badge b {
  background: linear-gradient(90deg,#e5243b,#dda63a,#4c9f38,#26bde2,#fd9d24,#a21942);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
.items-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 20px;
}
.items-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.items-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.grid-note {
  margin: 18px 0 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.item-card .size {
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.size-block {
  margin: 24px 0 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.size-block .size-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: left;
}
.size-block .size-note {
  font-size: 12px;
  color: var(--ink-2);
}
.item-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.item-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.item-card.feature { grid-row: span 2; }
.item-card .thumb {
  background-color: #fff;
  background-image: none;
  aspect-ratio: 4/5;
  width: 100%;
  padding: 0;
  border: 0;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.item-card button.thumb { font: inherit; color: inherit; }
.item-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform .4s ease;
}
.item-card .thumb:hover img { transform: scale(1.03); }
.item-card.feature .thumb { aspect-ratio: 1/1.1; }
.item-card .info {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.item-card h4 {
  font-family: var(--serif);
  font-size: 14.5px;
  margin: 0;
  font-weight: 700;
}
.item-card .sku {
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
}
.item-card .price {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--accent);
  margin-top: 4px;
}
.badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.badges span {
  font-size: 10.5px;
  background: var(--bg-2);
  color: var(--ink-2);
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* ============ Arrange (Editorial) ============ */
.arrange {
  background: var(--bg-2);
  padding: 128px 0;
}
.arrange-editorial {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 72px;
  gap: 24px;
}
.ed-photo {
  margin: 0;
  overflow: hidden;
  background: #e6dfd4;
  border-radius: 2px;
  cursor: zoom-in;
  transition: transform .3s ease;
}
.ed-photo:hover { transform: translateY(-2px); }
.ed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 上段: 縦長大 × 2 */
.ed-1  { grid-column: 1 / 7;   grid-row: 1 / 7; }
.ed-2  { grid-column: 7 / 13;  grid-row: 1 / 7; }
/* 中上段: 縦中 + 横長 + 縦中 */
.ed-3  { grid-column: 1 / 5;   grid-row: 8 / 12; }
.ed-4  { grid-column: 5 / 10;  grid-row: 8 / 11; }  /* landscape arrange-05 */
.ed-5  { grid-column: 10 / 13; grid-row: 8 / 12; }
/* 中下段: 縦中 × 3 */
.ed-6  { grid-column: 1 / 5;   grid-row: 13 / 18; }
.ed-7  { grid-column: 5 / 9;   grid-row: 13 / 18; }
.ed-8  { grid-column: 9 / 13;  grid-row: 13 / 18; }
/* 下段: 横長ワイド + 縦大 */
.ed-9  { grid-column: 1 / 8;   grid-row: 19 / 22; }  /* landscape arrange-10 */
.ed-10 { grid-column: 8 / 13;  grid-row: 19 / 24; }

/* ============ Contact ============ */
.contact {
  padding: 96px 0;
}
.contact-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.contact-form label > span {
  color: var(--ink);
  letter-spacing: 0.04em;
}
.contact-form label em {
  color: #c24; font-style: normal; margin-left: 4px;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form .check-group {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px 20px;
  margin: 0;
  border-radius: var(--radius);
}
.contact-form .check-group legend {
  font-size: 13px;
  padding: 0 8px;
  color: var(--ink-2);
}
.chk {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
  padding: 6px 0;
  font-size: 13.5px;
  cursor: pointer;
}
.chk input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--accent);
}
.chk-with-input input[type="text"] {
  margin-left: 8px;
  flex: 1;
  min-width: 160px;
  padding: 6px 10px;
  font-size: 13px;
}
.submit-btn {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 12px;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 14px 56px;
  font-size: 14px;
  letter-spacing: 0.2em;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background .2s, transform .2s;
}
.submit-btn:hover { background: var(--accent); }
.form-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: var(--ink-2);
  margin: 0;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--ink);
  color: #eee;
  padding: 40px 0;
  margin-top: 40px;
}
.site-footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .logo { color: #fff; margin: 0; }
.site-footer .logo .sub { color: var(--accent); }
.site-footer .small { font-size: 12px; color: #bbb; margin: 0; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .items-grid,
  .items-grid.four,
  .items-grid.three {
    grid-template-columns: 1fr 1fr;
  }
  .item-card.feature { grid-row: span 1; grid-column: 1 / -1; }
  .item-card.feature .thumb { aspect-ratio: 16/10; }
}

@media (max-width: 768px) {
  .inner { padding: 0 16px; }
  .br-sp { display: inline; }

  .site-header .inner {
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 10px;
  }
  .logo {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }
  .logo .brand { white-space: nowrap; }
  .logo .sub {
    margin-left: 0;
    font-size: 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .site-header .logo .brand img {
    height: 22px;
  }
  .site-header nav { gap: 10px; flex-shrink: 0; }
  .site-header nav a { font-size: 11px; letter-spacing: 0.06em; }

  .fv-slider { aspect-ratio: 4/5; }
  .slide { padding: 32px 24px; }
  .fv-hero-title { padding-bottom: 12px; }
  .fv-hero-kicker { font-size: 12px; letter-spacing: 0.18em; margin-bottom: 10px; }
  .fv-hero-main { font-size: clamp(26px, 7vw, 36px); letter-spacing: 0.06em; }
  .fv-hero-sub { font-size: 12px; letter-spacing: 0.24em; margin-top: 10px; }
  .fv-caption { padding: 44px 20px 56px; }

  .event-title {
    font-size: 22px;
    letter-spacing: 0.04em;
    line-height: 1.55;
    text-wrap: balance;
  }
  .fv-caption .lead {
    font-size: 13px;
    line-height: 2.5;
    text-align: center;
  }

  .sec-head { padding: 0 16px; margin-bottom: 36px; }
  .sec-head h2 { font-size: 22px; letter-spacing: 0.04em; }
  .sec-head p { font-size: 13px; }
  .sec-head .points-intro { line-height: 2.1; }
  .sec-head .items-desc br { display: none; }
  .sec-head .items-headline {
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 1.55;
    text-wrap: balance;
  }
  .sec-head .items-desc { font-size: 13px; line-height: 1.9; }

  .points, .items, .arrange, .contact { padding: 64px 0; }
  .points-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }
  .point h3 { font-size: 17px; letter-spacing: 0.02em; }
  .point .point-lead { font-size: 13px; line-height: 1.85; }
  .point .point-lead.center { text-align: center; line-height: 2; }
  .point .small { font-size: 12px; line-height: 1.85; }
  .point-notes p { font-size: 10.5px; }

  .items-block { padding: 0 20px; }
  .items-head.detail .head-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .items-head.detail .cat-title {
    font-size: 22px;
    letter-spacing: 0.02em;
    line-height: 1.35;
  }
  .items-head.detail .cat-sub {
    font-size: 0.6em;
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }
  .items-head.detail .catchphrase { font-size: 15px; letter-spacing: 0.01em; }
  .items-head.detail .detail-desc { font-size: 13px; line-height: 1.9; }
  .items-head.detail .detail-desc br { display: none; }
  .items-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .item-card.feature { grid-column: 1; }
  .item-card .thumb { aspect-ratio: 4/3; }

  .arrange-editorial {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 56px;
    grid-auto-flow: dense;
    gap: 14px;
    padding: 0 24px;
  }
  .ed-1  { grid-column: 1 / -1; grid-row: span 5; }
  .ed-2  { grid-column: 1 / -1; grid-row: span 5; }
  .ed-3  { grid-column: 1 / 4;  grid-row: span 4; }
  .ed-4  { grid-column: 1 / -1; grid-row: span 3; }
  .ed-5  { grid-column: 4 / 7;  grid-row: span 4; }
  .ed-6  { grid-column: 1 / 4;  grid-row: span 4; }
  .ed-7  { grid-column: 4 / 7;  grid-row: span 4; }
  .ed-8  { grid-column: 1 / -1; grid-row: span 5; }
  .ed-9  { grid-column: 1 / -1; grid-row: span 3; }
  .ed-10 { grid-column: 1 / -1; grid-row: span 5; }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .chk-with-input { flex-wrap: wrap; }
  .chk-with-input input[type="text"] { margin-left: 26px; width: 100%; }
}

/* ============ Lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 18, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: default;
}
.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
  color: #f7f5f1;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.08em;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 0;
  color: #f7f5f1;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 14px;
}
.lightbox-close:hover { opacity: 0.7; }
body.lightbox-open { overflow: hidden; }
@media (max-width: 768px) {
  .lightbox { padding: 20px; }
  .lightbox-img { max-height: calc(100vh - 120px); }
  .lightbox-close { top: 10px; right: 12px; font-size: 32px; }
}
