@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");

:root {
  --wine: #27070c;
  --wine-deep: #160306;
  --gold: #b79a5d;
  --gold-light: #dfcf9c;
  --cream: #f7f1e7;
  --text: #fffaf0;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--wine-deep);
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 80px;
  background:
    linear-gradient(90deg, rgba(39, 7, 12, .98), rgba(22, 3, 6, .96) 52%, rgba(50, 8, 14, .98)),
    radial-gradient(circle at 12% 0, rgba(223, 207, 156, .12), transparent 32%);
  border-bottom: 1px solid rgba(223, 207, 156, .12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .22);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 18px;
}

.brand {
  min-width: 345px;
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
  z-index: 35;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35));
  transition: transform .35s ease, filter .35s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 0 12px rgba(223, 207, 156, .25));
}

.brand-name {
  color: var(--gold-light);
  font-size: 23px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .45);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
}

.nav-panel {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  white-space: nowrap;
}

.nav a {
  position: relative;
  color: #fbf7ee;
  transition: color .28s ease, text-shadow .28s ease, transform .28s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transition: left .28s ease, right .28s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(223, 207, 156, .26);
  transform: translateY(-1px);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.active::after {
  left: 0;
  right: 0;
}

.tag {
  display: inline-block;
  margin-left: 5px;
  padding: 1px 5px 2px;
  border: 1px solid rgba(223, 207, 156, .78);
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
}

.contact-top {
  align-self: stretch;
  min-width: 130px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  overflow: hidden;
  position: relative;
  color: white;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, #8a6d3a, #d1bd84 48%, #92713e);
  border-left: 1px solid rgba(255, 255, 255, .16);
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.contact-top::before,
.gold-btn::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 42%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transition: left .5s ease;
}

.contact-top:hover::before,
.gold-btn:hover::before {
  left: 112%;
}

.contact-top.active {
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, .32);
}

.hero {
  min-height: 560px;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: #090707;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
  animation: hero-zoom 14s ease-out both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .58) 28%, rgba(0, 0, 0, .16) 74%),
    linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .02) 45%, rgba(0, 0, 0, .2));
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 18px 126px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  font-size: 50px;
  line-height: 1.55;
  font-weight: 400;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .86);
}

.hero p {
  margin: 22px 0 34px;
  color: #f4eee3;
  font-size: 16px;
  line-height: 2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .82);
}

.outline-btn {
  width: 210px;
  height: 44px;
  border: 1px solid rgba(223, 207, 156, .68);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(0, 0, 0, .26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
  transition: background .28s ease, color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.outline-btn:hover,
.outline-btn:focus-visible {
  background: rgba(183, 154, 93, .16);
  color: #fff;
  box-shadow: 0 0 28px rgba(183, 154, 93, .18), inset 0 0 0 1px rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

.scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  padding-bottom: 42px;
  transition: color .28s ease;
}

.scroll:hover {
  color: var(--gold-light);
}

.scroll:focus-visible {
  outline: 1px solid rgba(223, 207, 156, .8);
  outline-offset: 7px;
}

.scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 1px;
  height: 76px;
  background: linear-gradient(var(--gold-light), rgba(255, 255, 255, .35));
  animation: scroll-line 1.7s ease-in-out infinite;
}

.news {
  background: linear-gradient(90deg, #f6f0e6, #fffdf8 48%, #efe7da);
  color: #2a1a14;
}

.news-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 68px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 90px 1px 92px 74px 1fr 120px;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}

.news-title {
  font-size: 18px;
  line-height: 1.15;
}

.news-title small {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  white-space: nowrap;
}

.divider {
  height: 38px;
  background: rgba(181, 154, 98, .55);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 23px;
  padding: 0 17px;
  color: #fff;
  background: linear-gradient(90deg, #23050a, #4b1118);
  border-radius: 1px;
  font-size: 11px;
  white-space: nowrap;
}

.news-more {
  justify-self: end;
  color: #463024;
  font-size: 12px;
  transition: color .22s ease;
}

.news-more:hover {
  color: #8a6d3a;
}

.business {
  padding: 34px 18px 58px;
  background:
    radial-gradient(circle at 50% 5%, rgba(124, 47, 38, .32), transparent 42%),
    linear-gradient(90deg, #1d0508, #3b090e 50%, #1d0508);
}

.section-head {
  text-align: center;
  margin-bottom: 22px;
}

.section-head .en {
  color: var(--gold-light);
  font-size: 13px;
}

.section-head h2 {
  margin: 6px 0 10px;
  font-size: 27px;
  font-weight: 400;
}

.section-head p {
  margin: 0;
  color: #f1e9dc;
  font-size: 13px;
}

.cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-card {
  min-height: 158px;
  border: 1px solid rgba(190, 160, 96, .55);
  padding: 28px 34px 24px 142px;
  position: relative;
  overflow: hidden;
  background: #111;
  transition: border-color .28s ease, transform .28s ease, box-shadow .28s ease;
}

.service-card:hover {
  border-color: rgba(223, 207, 156, .9);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .26);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .5)),
    var(--img) center / cover;
  opacity: .78;
  transform: scale(1.03);
  transition: transform .5s ease, opacity .5s ease;
}

.service-card:hover::before {
  opacity: .9;
  transform: scale(1.07);
}

.icon-circle {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 26px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 32px;
  background: radial-gradient(circle, #d6c18a, #a4864c);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
  transition: transform .35s ease;
}

.icon-circle img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .22));
}

.service-card:hover .icon-circle {
  transform: rotate(-3deg) scale(1.04);
}

.service-card h3,
.service-card p,
.service-card .mini-tag {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.service-card p {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1.75;
}

.mini-tag {
  display: inline-block;
  padding: 2px 9px;
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.center {
  text-align: center;
  margin-top: 30px;
}

.cta-band {
  min-height: 86px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .73), rgba(0, 0, 0, .35), rgba(0, 0, 0, .73)),
    url("assets/contact.png") center / cover;
}

.cta-inner {
  max-width: var(--max);
  min-height: 86px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
}

.cta-inner p {
  margin: 0;
  font-size: 21px;
}

.gold-btn {
  min-width: 226px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, #9b7c46, #d1bd84 50%, #90713f);
  border: 1px solid rgba(255, 255, 255, .22);
  transition: transform .28s ease, box-shadow .28s ease;
}

.gold-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.site-footer {
  background: linear-gradient(90deg, #24070b, #3a080e, #25070b);
  padding: 24px 18px 22px;
  position: relative;
}

.page-hero {
  min-height: 338px;
  padding-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #080707;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .58) 34%, rgba(0, 0, 0, .2)),
    linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .06));
  z-index: 1;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--page-img) center / cover;
  transform: scale(1.04);
  animation: hero-zoom 14s ease-out both;
}

.company-hero {
  --page-img: url("https://images.pexels.com/photos/32205998/pexels-photo-32205998.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.contact-hero {
  --page-img: url("assets/form.png");
}

.news-hero,
.works-hero,
.recruit-hero,
.legal-hero,
.privacy-hero {
  --page-img: url("assets/top_slide1.png");
  min-height: 290px;
}

.page-hero-center {
  text-align: center;
}

.page-hero-center .page-en {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 24px;
  letter-spacing: .1em;
}

.page-hero-center .page-en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 92px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 12px rgba(223, 207, 156, .9);
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 0;
  font-size: 50px;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .88);
}

.page-en {
  margin: 8px 0 22px;
  color: var(--gold-light);
  font-size: 18px;
  letter-spacing: .08em;
  white-space: nowrap;
}

.page-hero-inner p:last-child {
  margin: 0;
  color: #f1e8d8;
  font-size: 15px;
}

.company-section {
  padding: 48px 18px 0;
  background:
    radial-gradient(circle at 76% 12%, rgba(183, 154, 93, .09), transparent 28%),
    linear-gradient(90deg, #080909, #111211 52%, #070707);
}

.company-profile,
.message-block {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.message-block {
  grid-template-columns: .9fr 1.1fr;
  margin-top: 56px;
  padding-bottom: 54px;
}

.message-image-wide img {
  object-position: center;
}

.sub-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}

.sub-heading h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
}

.sub-heading span {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .06em;
}

.profile-table {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.profile-table div {
  display: grid;
  grid-template-columns: 132px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.profile-table dt,
.profile-table dd {
  margin: 0;
  padding: 16px 14px;
  font-size: 13px;
  line-height: 1.8;
}

.profile-table dt {
  color: var(--gold-light);
  border-right: 1px solid rgba(255, 255, 255, .18);
  font-weight: 700;
  white-space: nowrap;
}

.profile-table dd {
  color: #f4eee4;
}

.profile-image,
.message-image {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183, 154, 93, .28);
  min-height: 330px;
}

.profile-image::after,
.message-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .04));
}

.profile-image img,
.message-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}

.profile-image:hover img,
.message-image:hover img {
  transform: scale(1.04);
}

.message-text h3 {
  margin: 0 0 18px;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.7;
}

.message-text p {
  margin: 0 0 12px;
  color: #f0e8dc;
  font-size: 13px;
  line-height: 2;
}

.message-text .signature {
  margin-top: 26px;
  color: #fff;
  font-size: 15px;
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(183, 154, 93, .44);
  border-bottom: 1px solid rgba(183, 154, 93, .44);
}

.philosophy-card {
  min-height: 182px;
  padding: 34px 24px;
  text-align: center;
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(183, 154, 93, .44);
  background: #120506;
}

.philosophy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, .42), rgba(0, 0, 0, .55)),
    radial-gradient(circle at 20% 50%, rgba(183, 154, 93, .22), transparent 35%),
    linear-gradient(135deg, rgba(74, 13, 18, .8), rgba(12, 10, 8, .86));
  transition: transform .7s ease;
}

.philosophy-card.vision::before {
  background:
    linear-gradient(rgba(0, 0, 0, .42), rgba(0, 0, 0, .55)),
    radial-gradient(circle at 70% 45%, rgba(183, 154, 93, .2), transparent 35%),
    linear-gradient(135deg, rgba(18, 15, 8, .9), rgba(42, 29, 7, .8));
}

.philosophy-card:hover::before {
  transform: scale(1.05);
}

.philosophy-card p,
.philosophy-card h2,
.philosophy-card span {
  position: relative;
  z-index: 1;
}

.philosophy-card p {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: .08em;
  font-weight: 700;
}

.philosophy-card h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 400;
}

.philosophy-card span {
  color: #f4eadc;
  font-size: 14px;
  line-height: 1.9;
}

.contact-section {
  padding: 52px 18px 72px;
  background:
    radial-gradient(circle at 80% 12%, rgba(183, 154, 93, .12), transparent 30%),
    linear-gradient(90deg, #080909, #151313 54%, #080707);
}

.quality-section {
  padding: 64px 18px 70px;
  background:
    radial-gradient(circle at 12% 10%, rgba(183, 154, 93, .11), transparent 30%),
    linear-gradient(90deg, #080909, #11110f 52%, #070707);
}

.quality-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.quality-copy p {
  margin: 0 0 14px;
  color: #f0e8dc;
  font-size: 14px;
  line-height: 2;
}

.quality-points {
  display: grid;
  gap: 14px;
}

.quality-points article {
  padding: 22px 24px;
  border: 1px solid rgba(183, 154, 93, .3);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01)),
    rgba(0, 0, 0, .22);
}

.quality-points span,
.flow-list span {
  color: var(--gold-light);
  font-size: 18px;
}

.quality-points h3,
.flow-list h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  font-weight: 400;
}

.quality-points p,
.flow-list p {
  margin: 0;
  color: #f0e8dc;
  font-size: 13px;
  line-height: 1.85;
}

.flow-section {
  padding: 56px 18px 64px;
  background:
    radial-gradient(circle at 78% 8%, rgba(124, 47, 38, .22), transparent 28%),
    linear-gradient(90deg, #1b0508, #33080d 52%, #1b0508);
}

.flow-list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(183, 154, 93, .34);
  border-left: 1px solid rgba(183, 154, 93, .34);
}

.flow-list article {
  min-height: 170px;
  padding: 24px 22px;
  border-right: 1px solid rgba(183, 154, 93, .34);
  border-bottom: 1px solid rgba(183, 154, 93, .34);
  background: rgba(0, 0, 0, .14);
}

.faq-section {
  padding: 56px 18px 66px;
  background:
    radial-gradient(circle at 18% 0, rgba(183, 154, 93, .09), transparent 30%),
    linear-gradient(90deg, #080909, #111211 52%, #070707);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid rgba(183, 154, 93, .32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012)),
    rgba(0, 0, 0, .2);
}

.faq-list summary {
  min-height: 58px;
  padding: 18px 54px 18px 22px;
  position: relative;
  color: #fffaf0;
  font-size: 15px;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-light);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: #f0e8dc;
  font-size: 13px;
  line-height: 1.95;
}

.news-page-section {
  padding: 56px 18px 72px;
  background:
    radial-gradient(circle at 50% 0, rgba(183, 154, 93, .08), transparent 34%),
    linear-gradient(90deg, #080909, #111211 52%, #070707);
}

.news-page-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(183, 154, 93, .32);
}

.news-page-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(183, 154, 93, .26);
}

.news-page-meta {
  display: grid;
  align-content: start;
  gap: 12px;
  color: var(--gold-light);
  font-size: 13px;
}

.news-page-meta .pill {
  width: max-content;
}

.news-page-item h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 400;
}

.news-page-item p {
  margin: 0;
  color: #f0e8dc;
  font-size: 14px;
  line-height: 1.95;
}

.contact-lead,
.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.contact-lead {
  margin-bottom: 30px;
}

.contact-lead p {
  margin: 0 0 12px;
  color: #f1e8dc;
  font-size: 14px;
  line-height: 1.9;
}

.mail-link {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(223, 207, 156, .45);
  transition: color .25s ease, border-color .25s ease;
}

.mail-link:hover {
  color: #fff;
  border-color: #fff;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(183, 154, 93, .34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    rgba(0, 0, 0, .22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .25);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}

.field {
  display: grid;
  gap: 9px;
}

.field-full {
  grid-column: 1 / -1;
}

.field span,
.privacy-check {
  color: #f5ead8;
  font-size: 13px;
}

.field b {
  margin-left: 8px;
  padding: 1px 7px 2px;
  color: #271008;
  background: var(--gold-light);
  font-size: 10px;
  white-space: nowrap;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(223, 207, 156, .32);
  border-radius: 0;
  padding: 13px 14px;
  color: #fff;
  background: rgba(0, 0, 0, .34);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.field select {
  color: #f8f0e4;
}

.field textarea {
  resize: vertical;
  min-height: 180px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(223, 207, 156, .85);
  box-shadow: 0 0 0 3px rgba(183, 154, 93, .12);
  background: rgba(0, 0, 0, .48);
}

.field textarea::placeholder {
  color: rgba(255, 250, 240, .45);
}

.privacy-check {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.7;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.privacy-check a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(223, 207, 156, .45);
}

.form-actions {
  margin-top: 26px;
  text-align: center;
}

.form-submit {
  border: 1px solid rgba(255, 255, 255, .22);
  cursor: pointer;
  font-family: inherit;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.form-result {
  max-width: 900px;
  margin-top: 28px;
  margin-right: auto;
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(223, 207, 156, .46);
  background: rgba(183, 154, 93, .1);
  text-align: center;
}

.form-result.success {
  border-color: rgba(132, 190, 143, .58);
  background: rgba(132, 190, 143, .12);
}

.form-result.error {
  border-color: rgba(210, 115, 115, .58);
  background: rgba(210, 115, 115, .12);
}

.form-result h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 400;
}

.form-result p {
  margin: 0 0 12px;
  color: #f2e8d9;
  font-size: 13px;
  line-height: 1.8;
}

.form-result a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(223, 207, 156, .45);
}

.complete-message {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.complete-message .outline-btn {
  margin-top: 12px;
}

.coming-section {
  padding: 64px 18px 76px;
  background:
    radial-gradient(circle at 50% 0, rgba(183, 154, 93, .1), transparent 34%),
    linear-gradient(90deg, #070808, #121110 52%, #070707);
}

.coming-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: 46px 42px;
  border: 1px solid rgba(183, 154, 93, .38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012)),
    rgba(0, 0, 0, .22);
  text-align: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.coming-kicker {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: .1em;
}

.coming-panel h2 {
  margin: 0 0 16px;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.55;
}

.coming-panel p:not(.coming-kicker) {
  max-width: 620px;
  margin: 0 auto 26px;
  color: #f0e8dc;
  font-size: 14px;
  line-height: 2;
}

.legal-section,
.privacy-section,
.revision-section {
  padding: 56px 18px 70px;
  background:
    radial-gradient(circle at 50% 0, rgba(183, 154, 93, .08), transparent 34%),
    linear-gradient(90deg, #070808, #111211 52%, #070707);
}

.legal-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.legal-lead,
.privacy-intro {
  max-width: 760px;
  margin: 0 auto 38px;
  color: #f2eadb;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

.legal-table {
  margin: 0;
  border-top: 1px solid rgba(183, 154, 93, .35);
}

.legal-table div,
.revision-table div {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid rgba(183, 154, 93, .28);
}

.legal-table dt,
.legal-table dd,
.revision-table dt,
.revision-table dd {
  margin: 0;
  padding: 20px 28px;
  font-size: 14px;
  line-height: 1.95;
}

.legal-table dt,
.revision-table dt {
  color: var(--gold-light);
  border-right: 1px solid rgba(183, 154, 93, .28);
  font-weight: 700;
  white-space: nowrap;
}

.legal-table dd,
.revision-table dd {
  color: #f5efe5;
}

.legal-note {
  margin-top: 32px;
  padding: 28px 34px;
  border: 1px solid rgba(183, 154, 93, .35);
  background:
    linear-gradient(135deg, rgba(183, 154, 93, .08), rgba(255, 255, 255, .01)),
    rgba(0, 0, 0, .22);
  text-align: center;
}

.legal-note h2,
.revision-section h2 {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 400;
}

.legal-note p {
  margin: 0 auto;
  color: #f5efe5;
  font-size: 13px;
  line-height: 1.9;
}

.legal-note .legal-date {
  margin-top: 14px;
  text-align: right;
}

.privacy-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 104px;
  padding: 22px 20px;
  border: 1px solid rgba(183, 154, 93, .34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .006)),
    rgba(0, 0, 0, .18);
}

.privacy-toc h2 {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(183, 154, 93, .28);
  color: var(--gold-light);
  font-size: 16px;
  letter-spacing: .06em;
  font-weight: 400;
}

.privacy-toc a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(183, 154, 93, .2);
  color: #f4eee3;
  font-size: 12px;
  line-height: 1.55;
  transition: color .25s ease;
}

.privacy-toc a:hover {
  color: var(--gold-light);
}

.privacy-toc span {
  color: var(--gold-light);
  font-size: 18px;
  line-height: 1;
}

.privacy-content {
  border-top: 1px solid rgba(183, 154, 93, .3);
}

.privacy-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(183, 154, 93, .3);
  scroll-margin-top: 106px;
}

.privacy-number {
  color: var(--gold-light);
  font-size: 31px;
  line-height: 1.1;
  font-weight: 400;
}

.privacy-item h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 400;
}

.privacy-item p {
  margin: 0;
  color: #f0e8dc;
  font-size: 13px;
  line-height: 1.95;
}

.security-band {
  border-top: 1px solid rgba(183, 154, 93, .34);
  border-bottom: 1px solid rgba(183, 154, 93, .34);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .38), rgba(0, 0, 0, .72)),
    radial-gradient(circle at 18% 42%, rgba(223, 207, 156, .2), transparent 24%),
    linear-gradient(90deg, #1a1306, #080808 54%, #161006);
}

.security-inner {
  max-width: 980px;
  min-height: 132px;
  margin: 0 auto;
  padding: 26px 18px;
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 38px;
}

.security-icon {
  width: 96px;
  height: 96px;
  margin-left: auto;
  display: grid;
  place-items: center;
}

.security-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(223, 207, 156, .18));
}

.security-inner p {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 16px;
  letter-spacing: .08em;
}

.security-inner h2 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 400;
}

.security-inner span {
  color: #f1e8dc;
  font-size: 13px;
  line-height: 1.9;
}

.revision-section {
  padding-top: 44px;
}

.revision-table {
  margin: 0;
  border-top: 1px solid rgba(183, 154, 93, .28);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 46px;
  align-items: start;
}

.footer-brand {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand .brand-logo {
  width: 62px;
  height: 62px;
}

.footer-brand .brand-name {
  font-size: 22px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 28px;
}

.footer-group {
  display: grid;
  gap: 10px;
  align-content: start;
  color: #f2eadb;
  font-size: 12px;
  line-height: 1.7;
}

.footer-group p {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

.footer-group a,
.footer-group span {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.footer-group small,
.nav .tag {
  margin-left: 6px;
  padding: 1px 5px 2px;
  border: 1px solid rgba(223, 207, 156, .64);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}

.copy {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(223, 207, 156, .12);
  text-align: center;
  color: #d4cab8;
  font-size: 12px;
}

.pagetop {
  position: absolute;
  right: 34px;
  top: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 22px;
  transition: background .28s ease, transform .28s ease;
}

.pagetop:hover {
  background: rgba(183, 154, 93, .12);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-up .82s cubic-bezier(.2, .75, .2, 1) forwards;
}

.delay-1 {
  animation-delay: .16s;
}

.delay-2 {
  animation-delay: .3s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.01);
  }
}

@keyframes scroll-line {
  0%,
  100% {
    transform: translateY(-7px);
    opacity: .42;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  .brand {
    min-width: 300px;
  }

  .nav {
    gap: 17px;
    font-size: 12px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    height: 74px;
  }

  .header-inner {
    justify-content: space-between;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 17px;
    line-height: 1.15;
  }

  .hamburger {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(223, 207, 156, .62);
    display: grid;
    place-items: center;
    gap: 0;
    padding: 12px 10px;
    position: relative;
    z-index: 35;
    cursor: pointer;
    background: rgba(0, 0, 0, .18);
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold-light);
    transition: transform .28s ease, opacity .28s ease;
  }

  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(38deg);
  }

  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-38deg);
  }

  .nav-panel {
    position: fixed;
    inset: 74px 0 auto;
    height: auto;
    display: block;
    padding: 22px 24px 28px;
    background:
      linear-gradient(180deg, rgba(38, 7, 12, .98), rgba(16, 3, 6, .98)),
      radial-gradient(circle at 50% 0, rgba(223, 207, 156, .15), transparent 42%);
    border-bottom: 1px solid rgba(223, 207, 156, .22);
    box-shadow: 0 22px 44px rgba(0, 0, 0, .42);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
  }

  .nav-toggle:checked ~ .nav-panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav {
    height: auto;
    display: grid;
    gap: 0;
    font-size: 15px;
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(223, 207, 156, .14);
  }

  .nav a::after {
    bottom: 10px;
  }

  .contact-top {
    margin-top: 20px;
    height: 46px;
    width: 100%;
    align-self: auto;
  }

  .hero {
    min-height: 640px;
    padding-top: 74px;
  }

  .page-hero {
    min-height: 310px;
    padding-top: 74px;
  }

  .company-profile,
  .message-block,
  .quality-inner {
    grid-template-columns: 1fr;
  }

  .profile-image {
    order: -1;
  }

  .philosophy {
    grid-template-columns: 1fr;
  }

  .philosophy-card {
    border-right: 0;
    border-bottom: 1px solid rgba(183, 154, 93, .44);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .header-inner {
    padding: 0 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 15px;
    max-width: 138px;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav .tag {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 690px;
  }

  .hero picture img {
    object-position: center top;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .34) 38%, rgba(0, 0, 0, .82)),
      linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .12));
  }

  .hero-inner {
    padding: 64px 22px 96px;
  }

  .hero h1 {
    font-size: clamp(25px, 9vw, 34px);
    line-height: 1.55;
  }

  .hero p {
    font-size: 14px;
  }

  .page-hero h1 {
    font-size: clamp(22px, 8.2vw, 34px);
    line-height: 1.35;
    max-width: 100%;
  }

  .legal-hero h1 {
    font-size: clamp(19px, 5.8vw, 28px);
  }

  .sub-heading {
    display: block;
  }

  .sub-heading h2 {
    font-size: 24px;
    line-height: 1.55;
  }

  .sub-heading span {
    display: block;
    margin-top: 6px;
  }

  .company-section {
    padding-top: 34px;
  }

  .profile-table div {
    grid-template-columns: 1fr;
  }

  .profile-table dt {
    border-right: 0;
    padding-bottom: 4px;
  }

  .profile-table dd {
    padding-top: 4px;
  }

  .profile-image,
  .message-image,
  .profile-image img,
  .message-image img {
    min-height: 260px;
  }

  .message-block {
    margin-top: 42px;
  }

  .philosophy-card {
    min-height: 220px;
  }

  .contact-section {
    padding: 36px 18px 54px;
  }

  .quality-section,
  .flow-section,
  .faq-section,
  .news-page-section {
    padding: 42px 18px 54px;
  }

  .quality-points article {
    padding: 20px 18px;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-list article {
    min-height: auto;
    padding: 22px 18px;
  }

  .faq-list summary {
    padding: 16px 48px 16px 18px;
    font-size: 14px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .news-page-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .news-page-meta {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .privacy-check {
    align-items: flex-start;
  }

  .privacy-check span {
    min-width: 0;
  }

  .coming-section {
    padding: 42px 18px 56px;
  }

  .coming-panel {
    padding: 32px 20px;
  }

  .coming-panel h2 {
    font-size: 23px;
  }

  .legal-section,
  .privacy-section,
  .revision-section {
    padding: 40px 18px 54px;
  }

  .legal-lead,
  .privacy-intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .legal-table div,
  .revision-table div {
    grid-template-columns: 1fr;
  }

  .legal-table dt,
  .revision-table dt {
    border-right: 0;
    padding-bottom: 5px;
  }

  .legal-table dd,
  .revision-table dd {
    padding-top: 5px;
  }

  .legal-note {
    padding: 24px 20px;
    text-align: left;
  }

  .legal-note .legal-date {
    text-align: left;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .privacy-toc {
    position: static;
  }

  .privacy-item {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .privacy-number {
    font-size: 25px;
  }

  .security-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .security-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .news-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 22px;
  }

  .divider {
    display: none;
  }

  .news-more {
    justify-self: start;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 148px 24px 24px;
  }

  .icon-circle {
    left: 24px;
  }

  .cta-inner {
    min-height: 136px;
    padding: 22px;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .cta-inner p {
    font-size: 18px;
    line-height: 1.7;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
    justify-content: center;
  }

  .footer-brand .brand-logo {
    width: 54px;
    height: 54px;
  }

  .footer-brand .brand-name {
    font-size: 18px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .footer-group {
    justify-items: center;
  }

  .footer-group:last-child {
    grid-column: 1 / -1;
  }

  .footer-group a,
  .footer-group span {
    width: auto;
    justify-self: center;
  }

  .pagetop {
    position: static;
    margin: 20px auto 0;
  }
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 13px;
    max-width: 122px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .footer-brand .brand-name {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
