@charset "UTF-8";

/* =========================================================
   RAONMOA — Fragrance Brand Site
   ========================================================= */

:root {
  --ink:        #0a0a0c;
  --ink-2:      #101014;
  --ink-3:      #16161b;
  --line:       rgba(200, 169, 126, .22);
  --line-soft:  rgba(244, 240, 233, .10);

  --gold:       #c8a97e;
  --gold-lt:    #e6d2ad;
  --gold-deep:  #a2854f;

  --cream:      #f4f0e9;
  --muted:      rgba(244, 240, 233, .60);
  --muted-2:    rgba(244, 240, 233, .40);

  --paper:      #f7f4ee;
  --paper-ink:  #1a1a1c;
  --paper-mut:  rgba(26, 26, 28, .62);

  --serif:  "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:   "Noto Sans JP", "Hiragino Sans", "Yu Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  --latin:  "Cormorant Garamond", "Times New Roman", serif;

  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- shared atoms ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.eyebrow {
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
  flex: none;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.55; letter-spacing: .08em; }

.h-sec {
  font-size: clamp(25px, 4vw, 40px);
  margin-bottom: 26px;
}
.h-sub {
  font-size: clamp(19px, 2.4vw, 25px);
  margin-bottom: 18px;
}

.lead { color: var(--muted); font-size: 15px; max-width: 62ch; }
.lead + .lead { margin-top: 1.4em; }

.latin { font-family: var(--latin); letter-spacing: .18em; }

.rule { height: 1px; background: var(--line-soft); border: 0; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 34px;
  border: 1px solid var(--line);
  color: var(--gold-lt);
  font-family: var(--latin);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .5s var(--ease), border-color .5s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .55s var(--ease);
  z-index: -1;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { color: var(--ink); border-color: var(--gold); }
.btn:hover::after { transform: translateY(0); }
.btn .arw { transition: transform .45s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }

.btn-solid { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-solid::after { background: var(--cream); }
.btn-solid:hover { color: var(--ink); border-color: var(--cream); }

/* section rhythm */
.sec { padding: clamp(84px, 12vw, 150px) 0; position: relative; }
.sec-paper { background: var(--paper); color: var(--paper-ink); }
.sec-paper .lead { color: var(--paper-mut); }
.sec-paper .rule { background: rgba(26,26,28,.12); }

/* ---------- header ---------- */

.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck {
  background: rgba(10, 10, 12, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 13px 0;
  border-bottom-color: var(--line-soft);
}
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; flex-direction: column; gap: 3px; }
.logo b {
  font-family: var(--latin);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: .32em;
  color: var(--cream);
  line-height: 1;
}
.logo small {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--gold);
  font-family: var(--sans);
}

.gnav ul { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }
.gnav a {
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color .4s var(--ease);
  white-space: nowrap;
}
.gnav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.gnav a:hover, .gnav a[aria-current="page"] { color: var(--gold-lt); }
.gnav a:hover::after { transform: scaleX(1); transform-origin: left; }

.hdr-cta {
  border: 1px solid var(--line);
  padding: 11px 22px;
  font-family: var(--latin);
  font-size: 11.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-lt);
  transition: background .4s var(--ease), color .4s var(--ease);
  white-space: nowrap;
}
.hdr-cta:hover { background: var(--gold); color: var(--ink); }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-soft);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex: none;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 18px; height: 1px;
  background: var(--cream);
  transition: transform .45s var(--ease), opacity .3s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(10,10,12,.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px var(--pad) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer ul { display: flex; flex-direction: column; gap: 6px; }
.drawer a {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .12em;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color .4s, padding-left .4s var(--ease);
}
.drawer a:hover { color: var(--gold); padding-left: 10px; }
.drawer a em {
  display: block;
  font-family: var(--latin);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-top: 3px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.72) 0%, rgba(10,10,12,.15) 38%, rgba(10,10,12,.92) 100%),
    radial-gradient(120% 80% at 20% 50%, rgba(10,10,12,.6), transparent 65%);
}

.hero-in { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(80px, 12vh, 140px); }

.hero h1 {
  font-size: clamp(30px, 6.4vw, 68px);
  line-height: 1.42;
  letter-spacing: .1em;
  margin-bottom: 28px;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--gold-lt); }
.hero-txt { color: rgba(244,240,233,.78); max-width: 44ch; margin-bottom: 40px; font-size: 14.5px; }
.hero-acts { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-scroll {
  position: absolute;
  right: var(--pad);
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--muted-2);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 76px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* page hero (sub pages) */
.phero {
  position: relative;
  min-height: clamp(360px, 56vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.phero-bg { position: absolute; inset: 0; }
.phero-bg img { width: 100%; height: 100%; object-fit: cover; }
.phero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.9) 0%, rgba(10,10,12,.5) 42%, rgba(10,10,12,.97) 100%),
    linear-gradient(90deg, rgba(10,10,12,.72) 0%, rgba(10,10,12,.1) 60%);
}
.phero-in { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 7vh, 84px); text-shadow: 0 1px 24px rgba(0,0,0,.55); }
.phero h1 { font-size: clamp(28px, 5vw, 50px); letter-spacing: .12em; }
.phero .sub { color: var(--muted); margin-top: 16px; max-width: 52ch; }

.crumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 11px; letter-spacing: .18em; color: rgba(244, 240, 233, .55);
  margin-bottom: 20px;
}
.crumb a:hover { color: var(--gold); }
.crumb span { color: var(--gold-deep); }

/* ---------- concept ---------- */

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.concept-copy h2 { font-size: clamp(22px, 3.2vw, 34px); line-height: 1.75; margin-bottom: 30px; }
.concept-fig { position: relative; }
.concept-fig img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.concept-fig::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--line);
  z-index: -1;
}

.vlist { margin-top: 42px; display: grid; gap: 2px; }
.vlist li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.vlist li:last-child { border-bottom: 1px solid var(--line-soft); }
.vlist .no { font-family: var(--latin); font-size: 12px; letter-spacing: .2em; color: var(--gold); }
.vlist .tx b { display: block; font-family: var(--serif); font-size: 16px; font-weight: 500; margin-bottom: 4px; letter-spacing: .08em; }
.vlist .tx p { color: var(--muted); font-size: 13.5px; line-height: 1.9; }

/* ---------- service cards ---------- */

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }

.svc {
  position: relative;
  display: block;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
  overflow: hidden;
  transition: border-color .5s var(--ease), transform .6s var(--ease);
}
.svc:hover { border-color: var(--line); transform: translateY(-6px); }
.svc-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.svc:hover .svc-img img { transform: scale(1.07); }
.svc-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16,16,20,.9) 100%);
}
.svc-body { padding: 30px 28px 34px; }
.svc-body .no {
  font-family: var(--latin);
  font-size: 11px; letter-spacing: .3em; color: var(--gold); display: block; margin-bottom: 14px;
}
.svc-body h3 { font-family: var(--latin); font-size: 25px; letter-spacing: .22em; margin-bottom: 6px; }
.svc-body .jp { font-size: 12px; letter-spacing: .18em; color: var(--gold-lt); margin-bottom: 16px; }
.svc-body p { color: var(--muted); font-size: 13.5px; line-height: 1.95; }
.svc-more {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--latin); font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
}
.svc:hover .svc-more { color: var(--gold-lt); }

.badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(10,10,12,.78);
  border: 1px solid var(--line);
  color: var(--gold-lt);
  font-family: var(--latin);
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  padding: 7px 14px;
  backdrop-filter: blur(6px);
}

/* ---------- feature (image + text alternating) ---------- */

.feat { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.feat + .feat { margin-top: clamp(70px, 10vw, 130px); }
.feat.rev .feat-fig { order: 2; }
.feat-fig img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feat-fig { position: relative; }
.feat-fig .cap {
  position: absolute; left: 0; bottom: -30px;
  font-family: var(--latin); font-size: 10.5px; letter-spacing: .26em; color: var(--muted-2);
}

.tagrow { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.tag {
  border: 1px solid var(--line-soft);
  padding: 7px 15px;
  font-size: 11.5px;
  letter-spacing: .12em;
  color: var(--muted);
}
.sec-paper .tag { border-color: rgba(26,26,28,.16); color: var(--paper-mut); }

/* ---------- brand mark block ---------- */

.mark {
  text-align: center;
  padding: clamp(60px, 9vw, 110px) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.mark .en { font-family: var(--latin); font-size: clamp(38px, 8vw, 96px); letter-spacing: .28em; color: var(--gold-lt); line-height: 1.1; }
.mark .jp { margin-top: 20px; color: var(--muted); font-size: 13.5px; letter-spacing: .2em; }

/* ---------- flow ---------- */

.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 60px; }
.flow-item { position: relative; padding: 0 20px; }
.flow-item::before {
  content: "";
  position: absolute; left: 0; top: 27px;
  width: 100%; height: 1px;
  background: var(--line-soft);
}
.flow-item:first-child::before { left: 50%; width: 50%; }
.flow-item:last-child::before { width: 50%; }
.flow-dot {
  position: relative;
  width: 54px; height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
  font-family: var(--latin); font-size: 13px; letter-spacing: .1em; color: var(--gold);
  margin: 0 auto 24px;
  z-index: 1;
}
.sec-paper .flow-dot { background: var(--paper); border-color: rgba(26,26,28,.2); color: var(--gold-deep); }
.sec-paper .flow-item::before { background: rgba(26,26,28,.14); }
.flow-item h4 { font-size: 15px; text-align: center; margin-bottom: 10px; letter-spacing: .1em; }
.flow-item p { font-size: 12.5px; line-height: 1.9; color: var(--muted); text-align: center; }
.sec-paper .flow-item p { color: var(--paper-mut); }

/* ---------- custom / print ---------- */

.cust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 54px; }
.cust {
  border: 1px solid var(--line-soft);
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: stretch;
  background: var(--ink-2);
}
.cust img { width: 100%; height: 100%; object-fit: cover; min-height: 190px; }
.cust-body { padding: 30px 28px; }
.cust-body h4 { font-size: 17px; margin-bottom: 12px; }
.cust-body p { font-size: 13px; color: var(--muted); line-height: 1.95; }

/* ---------- faq ---------- */

.faq { margin-top: 50px; border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  display: flex; align-items: flex-start; gap: 18px;
  padding: 26px 0;
  background: none; border: 0; cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: var(--serif);
  font-size: 15.5px;
  letter-spacing: .07em;
  line-height: 1.7;
}
.faq-q .q { font-family: var(--latin); color: var(--gold); font-size: 14px; flex: none; margin-top: 2px; }
.faq-q .ico { margin-left: auto; flex: none; position: relative; width: 14px; height: 14px; margin-top: 6px; }
.faq-q .ico::before, .faq-q .ico::after {
  content: ""; position: absolute; background: var(--gold);
  left: 0; top: 6.5px; width: 14px; height: 1px;
  transition: transform .45s var(--ease);
}
.faq-q .ico::after { transform: rotate(90deg); }
.faq-item.is-open .ico::after { transform: rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.faq-a p { padding: 0 32px 28px 34px; color: var(--muted); font-size: 13.5px; line-height: 2; }
.sec-paper .faq-a p { color: var(--paper-mut); }

/* ---------- contact / cta ---------- */

.cta-band { position: relative; overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 50% 50%, rgba(10,10,12,.8), rgba(10,10,12,.93) 100%);
}
.cta-band .inner { position: relative; z-index: 2; text-align: center; padding: clamp(80px, 12vw, 140px) 0; text-shadow: 0 1px 24px rgba(0,0,0,.5); }
.cta-band h2 { font-size: clamp(23px, 3.6vw, 38px); margin-bottom: 22px; }
.cta-band p { color: var(--muted); margin-bottom: 40px; }
.cta-acts { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* form */
.form { display: grid; gap: 22px; margin-top: 46px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-size: 12px; letter-spacing: .16em; color: var(--gold-lt); }
.field label .req { color: #d98a72; margin-left: 6px; font-size: 10px; letter-spacing: .1em; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .05em;
  padding: 15px 16px;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.field textarea { min-height: 170px; resize: vertical; line-height: 1.9; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ink-3);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244,240,233,.26); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-note { font-size: 12px; color: var(--muted-2); line-height: 1.9; }
.form-actions { display: flex; justify-content: flex-start; }

/* ---------- company table ---------- */

.tbl { width: 100%; border-collapse: collapse; margin-top: 44px; }
.tbl th, .tbl td { text-align: left; padding: 22px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: top; font-size: 14px; }
.tbl th { width: 210px; font-family: var(--serif); font-weight: 500; letter-spacing: .14em; color: var(--gold-lt); }
.tbl td { color: var(--muted); line-height: 1.95; }
.sec-paper .tbl th, .sec-paper .tbl td { border-bottom-color: rgba(26,26,28,.12); }
.sec-paper .tbl th { color: var(--gold-deep); }
.sec-paper .tbl td { color: var(--paper-mut); }

/* ---------- footer ---------- */

.ftr { background: var(--ink-2); border-top: 1px solid var(--line-soft); padding: clamp(56px, 8vw, 84px) 0 34px; }
.ftr-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line-soft); }
.ftr-brand .logo { margin-bottom: 20px; }
.ftr-brand p { font-size: 12.5px; color: var(--muted-2); line-height: 2; max-width: 34ch; }
.ftr-col h5 { font-family: var(--latin); font-size: 11px; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.ftr-col li { margin-bottom: 11px; }
.ftr-col a { font-size: 13px; color: var(--muted); transition: color .35s; }
.ftr-col a:hover { color: var(--gold-lt); }
.ftr-bot { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; flex-wrap: wrap; }
.ftr-bot small { font-family: var(--latin); font-size: 11px; letter-spacing: .18em; color: var(--muted-2); }

/* ---------- reveal animation ---------- */

.rv { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }
.rv-d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .gnav, .hdr-cta { display: none; }
  .burger { display: block; }
  .svc-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-fig { order: -1; max-width: 420px; }
  .feat, .feat.rev .feat-fig { grid-template-columns: 1fr; order: 0; }
  .feat-fig .cap { position: static; display: block; margin-top: 12px; }
  .flow { grid-template-columns: 1fr 1fr; gap: 40px 10px; }
  .flow-item::before { display: none; }
  .cust-grid { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr 1fr; }
  .ftr-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 14px; }
  .hero { min-height: 92svh; }
  .hero-scroll { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; gap: 34px; }
  .cust { grid-template-columns: 1fr; }
  .cust img { min-height: 200px; }
  .tbl th, .tbl td { display: block; width: 100%; }
  .tbl th { border-bottom: 0; padding-bottom: 4px; }
  .tbl td { padding-top: 0; }
  .vlist li { grid-template-columns: 1fr; gap: 4px; }
}
