:root {
  --night: #0c0c14;
  --night-2: #16141f;
  --dusk: #2b1f2e;
  --warm: #ffb15e;
  --warm-2: #ff8a5c;
  --cool: #9fd3ec;
  --paper: #f7f4ee;
  --paper-2: #efe9de;
  --ink: #1b1912;
  --ink-muted: #6b6459;
  --line: #ddd4c4;
  --accent: #d98a3d;
  --white: #ffffff;
  --maxw: 1180px;
  --nav-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main, .cart-page, .product-page {
  flex: 1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}
.site-nav.solid {
  background: rgba(12,12,20,0.92);
  backdrop-filter: blur(6px);
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.site-nav.header-dark {
  background: var(--night);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { font-size: 20px; letter-spacing: 0.12em; color: var(--white); font-weight: 600; }
.nav-logo .dot { color: var(--warm); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--warm); border-color: var(--warm); }
.nav-cta {
  background: var(--warm);
  color: var(--night) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  border-bottom: none !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--warm-2); color: var(--night) !important; }

/* ---------- Mobile nav toggle ---------- */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 20;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.2s ease;
  transform-origin: center;
}
.nav-toggle:hover span {
  background-color: var(--warm);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 2px;
}

/* ---------- Marquee ---------- */
.marquee-band {
  background: var(--night);
  color: var(--warm);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-band .track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 28s linear infinite;
  font-size: 14px;
  letter-spacing: 0.14em;
}
.marquee-band .track span { margin: 0 28px; color: rgba(255,255,255,0.55); }
.marquee-band .track span.hi { color: var(--warm); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---------- Hero (day-cycle animated gradient) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(120deg, var(--night), var(--dusk), var(--night));
}
.hero::before {
  content: "";
  position: absolute; inset: -20%;
  background: conic-gradient(from 0deg, #0c0c14, #2b1f2e, #6b3a2f, #ffb15e, #cfe6f5, #9fd3ec, #2b1f2e, #0c0c14);
  animation: dayCycle 36s linear infinite;
  opacity: 0.55;
  filter: blur(60px);
}
@keyframes dayCycle {
  0% { transform: rotate(0deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1.2); }
}
.hero-inner { position: relative; z-index: 2; color: var(--white); padding: 0 24px; }
.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--warm);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(32px, 5.4vw, 60px);
  line-height: 1.5;
  margin: 0 0 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero h1 .accent-line { color: var(--warm); }
.hero p.lead {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 11px; letter-spacing: 0.2em;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.scroll-cue .line { width: 1px; height: 32px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--warm); animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.06em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.btn.warm { background: var(--warm); border-color: var(--warm); color: var(--night); }
.btn.warm:hover { background: var(--warm-2); border-color: var(--warm-2); }
.btn.ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn.ghost:hover { background: rgba(255,255,255,0.1); }
.btn.outline-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.outline-ink:hover { background: var(--ink); color: var(--white); }
.btn.block { display: block; width: 100%; text-align: center; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform:none; }

/* ---------- Sections & reveal ---------- */
section { padding: 110px 0; }
.section-light { background: var(--paper); }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--night); color: var(--white); }
.eyebrow-sm {
  font-size: 12px; letter-spacing: 0.28em; color: var(--accent); margin-bottom: 16px; text-transform: uppercase;
}
.section-dark .eyebrow-sm { color: var(--warm); }
h2.section-title {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 700;
  margin: 0 0 26px;
  letter-spacing: 0.02em;
}
.section-desc { color: var(--ink-muted); max-width: 620px; font-size: 15px; }
.section-dark .section-desc { color: rgba(255,255,255,0.7); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* ---------- Two pillars (business) ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.pillar-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 36px;
  color: var(--white);
  isolation: isolate;
}
.pillar-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform 0.6s ease;
}
.pillar-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(12,12,20,0.05), rgba(12,12,20,0.85));
}
.pillar-card:hover img { transform: scale(1.06); }
.pillar-card .tag { font-size: 12px; letter-spacing: 0.2em; color: var(--warm); margin-bottom: 12px; }
.pillar-card h3 { font-size: 24px; margin: 0 0 12px; }
.pillar-card p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 20px; max-width: 380px; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 44px; }

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 26px;
}
.info-card .num { font-size: 12px; color: var(--accent); letter-spacing: 0.16em; margin-bottom: 14px; }
.info-card h3 { font-size: 17px; margin: 0 0 10px; }
.info-card p { font-size: 13.5px; color: var(--ink-muted); margin: 0; }

.work-card { border-radius: 6px; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.work-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.work-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-card:hover .thumb img { transform: scale(1.07); }
.work-card .body { padding: 20px 22px; }
.work-card .tag { font-size: 11px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 8px; }
.work-card h3 { font-size: 16px; margin: 0 0 8px; }
.work-card p { font-size: 13px; color: var(--ink-muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: rgba(255,255,255,0.6); padding: 64px 0 32px; font-size: 13px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 20px; color: var(--white); letter-spacing: 0.12em; margin-bottom: 14px; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.12em; color: var(--warm); margin: 0 0 14px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-col a:hover { color: var(--warm); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 190px 0 70px;
  background: var(--night);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: -30%;
  background: conic-gradient(from 90deg, #0c0c14, #2b1f2e, #6b3a2f, #ffb15e, #0c0c14);
  animation: dayCycle 40s linear infinite;
  opacity: 0.35;
  filter: blur(70px);
}
.page-header .wrap { position: relative; z-index: 2; }
.page-header .eyebrow-sm { color: var(--warm); }
.page-header h1 { font-size: clamp(26px, 4vw, 42px); margin: 0 0 14px; }
.page-header p { color: rgba(255,255,255,0.7); max-width: 560px; }

/* ---------- Notice banner ---------- */
.notice-banner {
  background: #fdf1e6; border-bottom: 1px solid #f0d9b8; color: #8a5a20;
  font-size: 12px; text-align: center; padding: 8px 12px; position: relative; z-index: 200;
}

@media (max-width: 900px) {
  .site-nav.nav-open {
    z-index: 300;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-logo {
    position: relative;
    z-index: 20;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(12, 12, 20, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: calc(var(--nav-h) + 16px) 24px 40px;
    overflow-y: auto;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  @supports (justify-content: safe center) {
    .nav-links {
      justify-content: safe center;
    }
  }
  .site-nav.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .site-nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .site-nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-links a {
    font-size: 19px;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.88);
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--warm);
    border-color: transparent;
  }
  .nav-links .nav-cta {
    margin-top: 8px;
    font-size: 15px;
    padding: 12px 36px !important;
    text-align: center;
  }
  .nav-links .cart-link {
    margin-left: 0 !important;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.88);
  }
  .nav-links .cart-link:hover {
    color: var(--warm);
  }
  .pillars, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Company info table ---------- */
.info-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table th, .info-table td { text-align: left; padding: 18px 16px; font-size: 14px; }
.info-table th { width: 200px; color: var(--ink-muted); font-weight: 500; letter-spacing: 0.04em; }

.quote-block {
  border-left: 3px solid var(--warm);
  padding-left: 26px;
  font-size: 16px;
  color: var(--ink);
  max-width: 720px;
  margin: 24px 0;
}
.quote-block .who { display:block; margin-top: 18px; font-size: 13px; color: var(--ink-muted); }

/* ---------- Nav cart link ---------- */
.nav-links .cart-link {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}
.nav-links .cart-link:hover { color: var(--warm); }
.nav-links .cart-link span { background: var(--warm); color: var(--night); border-radius: 999px; font-size: 11px; padding: 1px 6px; margin-left: 2px; }

/* ---------- Shop: product grid ---------- */
.shop-toolbar {
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-bottom: 30px;
}
.shop-toolbar .filters { display: flex; gap: 18px; font-size: 13px; color: var(--ink-muted); }
.shop-toolbar .filters a { white-space: nowrap; }
.shop-toolbar .filters a.active, .shop-toolbar .filters a:hover { color: var(--accent); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 26px;
  padding-bottom: 40px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(27,25,18,0.1); }
.product-card .thumb { aspect-ratio: 4/3; background: var(--paper-2); overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .info { padding: 16px 18px 20px; }
.product-card .cat { font-size: 11px; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 4px; }
.product-card h3 { font-size: 15px; margin: 4px 0 8px; font-weight: 500; }
.product-card .price { font-size: 15px; color: var(--ink); font-weight: 600; }

/* ---------- Product detail ---------- */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 54px;
  padding: calc(var(--nav-h) + 40px) 0 90px;
}
.product-detail .thumb { aspect-ratio: 4/3; background: var(--paper-2); border-radius: 6px; overflow: hidden; }
.product-detail .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail .cat { font-size: 12px; color: var(--accent); letter-spacing: 0.08em; }
.product-detail h1 { font-size: 27px; margin: 8px 0 14px; font-weight: 700; }
.product-detail .price { font-size: 21px; color: var(--ink); font-weight: 700; margin-bottom: 20px; }
.product-detail .desc { color: var(--ink-muted); margin-bottom: 22px; }
.spec-list { list-style: none; padding: 0; margin: 0 0 28px; font-size: 13px; color: var(--ink-muted); }
.spec-list li { padding: 10px 0; border-top: 1px solid var(--line); }
.spec-list li:last-child { border-bottom: 1px solid var(--line); }

.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 4px; }
.qty-control button { width: 36px; height: 36px; border: none; background: transparent; font-size: 16px; cursor: pointer; }
.qty-control input { width: 40px; text-align: center; border: none; font-size: 14px; background: transparent; }

/* ---------- Cart page ---------- */
.cart-page { padding: calc(var(--nav-h) + 40px) 0 90px; }
.cart-page h1 { font-size: 25px; margin-bottom: 10px; }
.cart-row {
  display: grid; grid-template-columns: 90px 1fr auto auto auto;
  gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line);
}
.cart-row img { width: 90px; height: 90px; object-fit: cover; border-radius: 4px; background: var(--paper-2); }
.cart-row .meta h3 { font-size: 15px; margin: 0; }
.cart-row .remove { font-size: 12px; color: var(--ink-muted); cursor: pointer; background: none; border: none; }
.cart-row .remove:hover { color: var(--accent); }

.cart-summary { max-width: 380px; margin-left: auto; margin-top: 32px; border-top: 2px solid var(--ink); padding-top: 20px; }
.cart-summary .row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; color: var(--ink-muted); }
.cart-summary .row.total { font-size: 18px; color: var(--ink); font-weight: 700; margin-top: 14px; margin-bottom: 20px; }

.empty-state { text-align: center; padding: 90px 0; color: var(--ink-muted); }

/* ---------- Status pages (checkout success/cancel) ---------- */
.status-page { max-width: 560px; margin: 0 auto; padding: 170px 24px 100px; text-align: center; }
.status-page .icon { font-size: 44px; margin-bottom: 20px; color: var(--accent); }
.status-page h1 { font-size: 24px; margin-bottom: 14px; }
.status-page p { color: var(--ink-muted); margin-bottom: 28px; }
.order-summary { text-align: left; background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 20px; margin-bottom: 28px; }

@media (max-width: 760px) {
  .product-detail { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 30px); }
  .cart-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    grid-template-areas:
      "thumb meta   remove"
      "thumb qty    price";
    gap: 8px 14px;
    align-items: center;
    padding: 16px 0;
  }
  .cart-row img {
    grid-area: thumb;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
    align-self: start;
  }
  .cart-row .meta {
    grid-area: meta;
    align-self: center;
  }
  .cart-row .meta h3 {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
  }
  .cart-row .remove {
    grid-area: remove;
    justify-self: end;
    font-size: 12px;
    color: var(--ink-muted);
    padding: 4px 0;
  }
  .cart-row .qty-control {
    grid-area: qty;
    width: fit-content;
  }
  .cart-row .price {
    grid-area: price;
    justify-self: end;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
  }
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }
  .shop-toolbar .filters {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 10px;
    scrollbar-width: none;
  }
  .shop-toolbar .filters::-webkit-scrollbar {
    display: none;
  }
  .shop-toolbar .filters a {
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--paper-2);
    font-size: 13px;
    display: inline-block;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .shop-toolbar .filters a.active {
    background: var(--accent);
    color: var(--white);
  }
  .shop-toolbar .filters a.active:hover {
    color: var(--white);
  }
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }
  .info-table tr {
    padding: 16px 0;
  }
  .info-table th {
    width: auto;
    padding: 0 0 6px 0;
    font-size: 13px;
    color: var(--ink-muted);
  }
  .info-table td {
    padding: 0;
    font-size: 14px;
    line-height: 1.7;
  }
}

/* ---------- Works page: alternating case studies ---------- */
.case-study {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.case-study:last-child { border-bottom: none; }
.case-study.reverse .case-img { order: 2; }
.case-study.reverse .case-text { order: 1; }
.case-img { border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.case-study:hover .case-img img { transform: scale(1.04); }
.case-text .tag { font-size: 12px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 10px; }
.case-text h3 { font-size: 21px; margin: 0 0 6px; }
.case-text .loc { font-size: 13px; color: var(--ink-muted); margin-bottom: 16px; }
.case-text p.body-text { color: var(--ink-muted); font-size: 14.5px; margin-bottom: 18px; }
.case-quote {
  border-left: 3px solid var(--warm);
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--ink);
  font-style: normal;
}
.case-quote span { display: block; margin-top: 8px; font-size: 12px; color: var(--ink-muted); }

@media (max-width: 860px) {
  .case-study, .case-study.reverse { grid-template-columns: 1fr; }
  .case-study.reverse .case-img, .case-study.reverse .case-text { order: initial; }
}

/* ---------- Contact form ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.contact-info h3 { font-size: 16px; margin: 28px 0 8px; }
.contact-info p { font-size: 13.5px; color: var(--ink-muted); margin: 0 0 4px; }
.contact-info .big { font-size: 22px; color: var(--ink); font-weight: 700; }

.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 13px; color: var(--ink-muted); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 12px; color: var(--ink-muted); margin-top: -10px; margin-bottom: 24px; }
#contact-feedback { font-size: 13.5px; margin-top: 16px; display: none; }
#contact-feedback.success { color: #2f7a4d; }
#contact-feedback.error { color: #b3402a; }

@media (max-width: 860px) {
  .contact-layout, .form-row-2 { grid-template-columns: 1fr; }
}
