/* ============ MOBILERI KUKA — base styles ============ */
:root {
  --walnut-900: #2a1c14;
  --walnut-800: #3a271b;
  --walnut-700: #4d3526;
  --walnut-600: #6b4a35;
  --walnut-500: #8a6346;
  --gold-600: #b08a4f;
  --gold-500: #c9a36a;
  --gold-400: #dcbf8a;
  --beige-200: #ebdcc1;
  --cream-100: #f6efe1;
  --cream-50: #faf5ea;
  --cream-0:  #fdfaf3;
  --ink-700: #2c241d;
  --ink-500: #5b4f43;
  --ink-400: #8b7e6f;
  --line: #e6dcc6;
  --shadow-sm: 0 1px 2px rgba(60,40,20,0.05), 0 2px 8px rgba(60,40,20,0.04);
  --shadow-md: 0 4px 12px rgba(60,40,20,0.08), 0 12px 30px rgba(60,40,20,0.06);
  --shadow-lg: 0 10px 30px rgba(60,40,20,0.12), 0 30px 80px rgba(60,40,20,0.10);
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--walnut-800); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-600); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--walnut-900);
}

.serif { font-family: var(--serif); }
.mono { font-family: var(--mono); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand { display: flex; flex-direction: column; line-height: 1; cursor: pointer; }
.brand-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--walnut-900);
}
.brand-sub {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--gold-600);
  margin-top: 4px;
  font-weight: 500;
}
.nav { display: flex; gap: 36px; align-items: center; }
.nav a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--walnut-900); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-500);
}
.header-contact { display: flex; align-items: center; gap: 16px; }
.tel-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--walnut-800); font-weight: 500;
}
.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #25d36622;
  color: #1ca34f;
  transition: transform .2s, background .2s;
}
.icon-btn:hover { background: #25d36644; transform: translateY(-1px); }

.menu-toggle { display: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--walnut-900);
  color: var(--cream-0);
  border: 1px solid var(--walnut-900);
}
.btn-primary:hover { background: var(--walnut-700); border-color: var(--walnut-700); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--walnut-900);
  border: 1px solid var(--walnut-900);
}
.btn-ghost:hover { background: var(--walnut-900); color: var(--cream-0); }
.btn-whatsapp {
  background: #25d366;
  color: white;
  border: 1px solid #25d366;
}
.btn-whatsapp:hover { background: #1fb558; }

/* ===== Hero ===== */
.hero {
  position: relative;
  margin-top: 0;
  padding: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: calc(92vh - 80px);
  max-height: 760px;
}
.hero-copy {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream-50);
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 600; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--walnut-900);
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--walnut-700); }
.hero-lead {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 56px;
  display: flex; gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--walnut-800);
  display: block;
  line-height: 1;
}
.hero-meta-item .lab {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-400);
  margin-top: 8px;
  display: block;
}
.hero-image {
  position: relative;
  background: var(--walnut-700);
  overflow: hidden;
}
.hero-badge {
  position: absolute;
  top: 32px; right: 32px;
  padding: 8px 14px;
  background: rgba(253, 250, 243, 0.9);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--walnut-800);
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500);
}

/* ===== Placeholder image ===== */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      var(--walnut-700) 0,
      var(--walnut-700) 14px,
      var(--walnut-600) 14px,
      var(--walnut-600) 28px
    );
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 250, 243, 0.7);
  background: rgba(42, 28, 20, 0.4);
  text-align: center; padding: 0 16px;
}
.ph-light {
  background:
    repeating-linear-gradient(
      45deg,
      var(--beige-200) 0,
      var(--beige-200) 14px,
      var(--cream-100) 14px,
      var(--cream-100) 28px
    );
}
.ph-light::after { color: var(--walnut-700); background: rgba(246, 239, 225, 0.4); }
.ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Category photo grid ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-100);
  cursor: pointer;
  border-radius: 2px;
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card-zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(253, 250, 243, 0.92);
  color: var(--walnut-900);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-4px);
  transition: all .25s ease;
}
.photo-card:hover .photo-card-zoom,
.work-card:hover .photo-card-zoom { opacity: 1; transform: translateY(0); }
.work-card-img { position: relative; }

.show-more-wrap { display: flex; justify-content: center; margin-top: 48px; }

.cat-empty {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream-0);
  padding: 72px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--gold-600);
}
.cat-empty h3 { font-size: 26px; color: var(--walnut-900); margin: 0; }
.cat-empty p { color: var(--ink-500); font-size: 15px; max-width: 440px; margin: 0 0 12px; }

/* ===== Lightbox (full-screen photo viewer + zoom) ===== */
.lb-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 13, 9, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 72px 24px;
  animation: fade .2s ease;
}
.lb-stage {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 74vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lb-img {
  max-width: min(1100px, 92vw);
  max-height: 74vh;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  will-change: transform;
  border-radius: 2px;
  user-select: none;
  -webkit-user-drag: none;
}
.lb-close {
  position: absolute; top: 20px; right: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,0.24); }
.lb-counter {
  position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 13px; letter-spacing: 0.14em;
  font-family: var(--mono);
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  font-size: 32px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-bar {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 18px;
}
.lb-zoom {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px; padding: 4px;
}
.lb-zoom button {
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  background: transparent; transition: background .2s;
}
.lb-zoom button:hover { background: rgba(255,255,255,0.2); }
.lb-zoom-reset {
  width: auto !important; padding: 0 12px; min-width: 56px;
  font-size: 12px !important; font-family: var(--mono); letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .lb-backdrop { padding: 50px 6px 128px; }
  .lb-stage, .lb-img { max-height: 60vh; }
  .lb-counter { top: 14px; }
  .lb-close { top: 12px; right: 12px; }
  .lb-nav { width: 42px; height: 42px; font-size: 24px; background: rgba(0,0,0,0.5); }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-bar {
    flex-direction: column; gap: 10px; bottom: 22px;
    width: calc(100% - 28px); align-items: stretch;
  }
  .lb-bar .btn { width: 100%; justify-content: center; }
  .lb-zoom { align-self: center; }
}
.ph-gold {
  background:
    repeating-linear-gradient(
      45deg,
      var(--gold-400) 0,
      var(--gold-400) 14px,
      var(--gold-500) 14px,
      var(--gold-500) 28px
    );
}
.ph-gold::after { color: var(--walnut-900); background: rgba(220, 191, 138, 0.3); }

/* ===== Section ===== */
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 48px; gap: 32px; flex-wrap: wrap;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 640px;
}
.section-title em { font-style: italic; color: var(--walnut-700); }
.section-link {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--walnut-900); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--walnut-900);
  padding-bottom: 4px;
}
.section-link:hover { color: var(--gold-600); border-color: var(--gold-600); }

/* ===== Category grid ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--cream-100);
  aspect-ratio: 4 / 5;
  transition: transform .4s ease;
}
.cat-card .ph { transition: transform .6s ease; }
.cat-card:hover .ph { transform: scale(1.05); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42,28,20,0.85) 100%);
  display: flex; align-items: end;
  padding: 28px;
}
.cat-card-info { color: var(--cream-0); width: 100%; }
.cat-card-info .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  margin-bottom: 6px;
}
.cat-card-info h3 {
  color: var(--cream-0);
  font-size: 26px;
  margin-bottom: 4px;
}
.cat-card-info .count {
  font-size: 12px;
  color: rgba(253, 250, 243, 0.7);
  letter-spacing: 0.1em;
}
.cat-card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(253, 250, 243, 0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--walnut-900);
  transform: translateY(-4px); opacity: 0;
  transition: all .3s ease;
}
.cat-card:hover .cat-card-arrow { transform: translateY(0); opacity: 1; }

/* ===== Recent works ===== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.work-card { cursor: pointer; }
.work-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--cream-100);
  position: relative;
}
.work-card-img .ph { transition: transform .6s ease; }
.work-card:hover .ph { transform: scale(1.04); }
.work-card-cat {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 6px;
}
.work-card-name {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--walnut-900);
  font-weight: 500;
}

/* ===== About strip ===== */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-img {
  aspect-ratio: 4 / 5;
  background: var(--cream-100);
  overflow: hidden;
}
.about-strip-text h2 { margin-bottom: 24px; }
.about-strip-text p { color: var(--ink-500); font-size: 16px; margin-bottom: 18px; line-height: 1.7; }
.about-stats {
  display: flex; gap: 48px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* ===== Footer ===== */
.footer {
  background: var(--walnut-900);
  color: var(--cream-100);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer h4 {
  color: var(--gold-400);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-brand .brand-name { color: var(--cream-0); }
.footer-brand .brand-sub { color: var(--gold-400); }
.footer-brand p {
  font-size: 14px;
  color: rgba(246, 239, 225, 0.7);
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.7;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; }
.footer-list a {
  font-size: 14px;
  color: rgba(246, 239, 225, 0.75);
  transition: color .2s;
}
.footer-list a:hover { color: var(--gold-400); }
.footer-map {
  aspect-ratio: 4 / 3;
  background: var(--walnut-700);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--walnut-700);
}
.footer-bottom {
  border-top: 1px solid rgba(246, 239, 225, 0.12);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(246, 239, 225, 0.5);
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(246, 239, 225, 0.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(246, 239, 225, 0.8);
  transition: all .2s;
}
.socials a:hover { background: var(--gold-500); color: var(--walnut-900); border-color: var(--gold-500); }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 8px rgba(0,0,0,0.1);
  transition: transform .2s;
  animation: pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ===== Page header (interior pages) ===== */
.page-head {
  background: var(--cream-100);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
}
.crumb {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 18px;
}
.crumb a { color: var(--walnut-700); }
.crumb a:hover { color: var(--walnut-900); }
.page-head h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 16px;
}
.page-head p { color: var(--ink-500); max-width: 640px; font-size: 17px; line-height: 1.6; }

/* ===== Product grid (category page) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.product-card { cursor: pointer; }
.product-card-img {
  aspect-ratio: 4 / 3;
  background: var(--cream-100);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.product-card-img .ph { transition: transform .6s ease; }
.product-card:hover .ph { transform: scale(1.04); }
.product-card-img .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(253, 250, 243, 0.92);
  padding: 5px 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut-800);
  font-weight: 600;
}
.product-card-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--walnut-900);
  margin-bottom: 4px;
}
.product-card-meta {
  font-size: 13px;
  color: var(--ink-400);
  letter-spacing: 0.04em;
}

/* Category sub-nav */
.cat-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cat-tab {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--cream-0);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  transition: all .2s;
}
.cat-tab:hover { border-color: var(--walnut-700); color: var(--walnut-900); }
.cat-tab.active { background: var(--walnut-900); color: var(--cream-0); border-color: var(--walnut-900); }

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 28, 20, 0.72);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
  animation: fade .25s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--cream-0);
  max-width: 1080px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
  animation: rise .3s ease;
}
@keyframes rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-img { background: var(--cream-100); min-height: 460px; }
.modal-body { padding: 56px 48px; display: flex; flex-direction: column; }
.modal-cat {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 14px;
}
.modal-body h2 {
  font-size: 38px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.modal-body .desc { color: var(--ink-500); margin-bottom: 28px; line-height: 1.7; }
.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.modal-spec dt {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 4px;
}
.modal-spec dd { margin: 0; font-size: 14px; color: var(--walnut-800); }
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(253, 250, 243, 0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--walnut-900);
  z-index: 2;
  transition: background .2s;
}
.modal-close:hover { background: var(--cream-0); }

/* ===== About page ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.about-hero h1 { font-size: clamp(44px, 5vw, 72px); line-height: 1.05; margin-bottom: 28px; }
.about-hero p { color: var(--ink-500); font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
.about-img-stack {
  position: relative;
  aspect-ratio: 4 / 5;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-item {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
}
.value-item:last-child { border-right: none; }
.value-item .num {
  font-family: var(--serif);
  font-size: 60px;
  color: var(--gold-500);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  font-weight: 300;
}
.value-item h3 { font-size: 22px; margin-bottom: 10px; }
.value-item p { font-size: 14px; color: var(--ink-500); line-height: 1.7; margin: 0; }

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step .step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.process-step h3 { font-size: 22px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--ink-500); line-height: 1.65; margin: 0; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 80px 0 100px;
}
.form-card { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 14px;
  font-size: 16px;
  color: var(--walnut-900);
  font-family: inherit;
  resize: none;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--walnut-900);
}
.field textarea { min-height: 120px; }
.form-success {
  background: #1ca34f14;
  border: 1px solid #1ca34f55;
  color: #14663a;
  padding: 16px 18px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
}
.form-success strong { color: #0f5a30; }
.contact-info-card {
  background: var(--walnut-900);
  color: var(--cream-100);
  padding: 56px 44px;
}
.contact-info-card h3 {
  color: var(--cream-0);
  font-size: 28px;
  margin-bottom: 28px;
}
.info-block { padding: 22px 0; border-bottom: 1px solid rgba(246, 239, 225, 0.15); }
.info-block:last-child { border-bottom: none; }
.info-block .ttl {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 8px;
  font-weight: 600;
}
.info-block .val { font-size: 16px; color: var(--cream-0); line-height: 1.6; }
.info-block .val a:hover { color: var(--gold-400); }

.map-wide {
  aspect-ratio: 21 / 9;
  background: var(--cream-100);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.footer-map iframe, .map-wide iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== Map placeholder ===== */
.map-ph {
  width: 100%; height: 100%;
  background:
    linear-gradient(120deg, rgba(176, 138, 79, 0.08), rgba(176, 138, 79, 0.04)),
    repeating-linear-gradient(0deg, var(--cream-100) 0, var(--cream-100) 38px, var(--beige-200) 38px, var(--beige-200) 39px),
    repeating-linear-gradient(90deg, var(--cream-100) 0, var(--cream-100) 38px, var(--beige-200) 38px, var(--beige-200) 39px),
    var(--cream-100);
  position: relative;
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.map-pin .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--walnut-900);
  border: 3px solid var(--cream-0);
  box-shadow: 0 0 0 2px var(--walnut-900);
}
.map-pin .stem { width: 1px; height: 28px; background: var(--walnut-900); }
.map-pin .lab {
  position: absolute;
  top: -38px;
  background: var(--walnut-900);
  color: var(--cream-0);
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 14px 20px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream-0); flex-direction: column; gap: 0; padding: 12px 20px 20px; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .menu-toggle { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; color: var(--walnut-900); }
  .tel-link span { display: none; }
  .hero-grid { grid-template-columns: 1fr; max-height: none; }
  .hero-image { min-height: 380px; order: -1; }
  .hero-copy { padding: 56px 24px; }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
  .section { padding: 72px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .modal { grid-template-columns: 1fr; max-height: 92vh; }
  .modal-img { min-height: 280px; }
  .modal-body { padding: 32px 24px; }
  .about-hero { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: none; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-card { padding: 36px 28px; }
  .page-head { padding: 56px 0 40px; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .photo-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
  .wa-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
}
