﻿:root {
  --main: #0F2A44;
  --main-dark: #081B2E;
  --gold: #C8A45D;
  --text: #1F2933;
  --muted: #5E6B78;
  --bg: #ffffff;
  --soft: #EAF1F7;
  --line: #D9E4EE;
  --shadow: 0 22px 60px rgba(34, 34, 34, 0.12);
  --shadow-strong: 0 34px 90px rgba(34, 34, 34, 0.16);
  --radius: 8px;
  --container-x: clamp(20px, 5vw, 72px);
  --section-y: clamp(76px, 9vw, 128px);
  --font-sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.8;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--main);
  color: #ffffff;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 70% 24%, rgba(46, 95, 149, 0.35), transparent 34%),
    linear-gradient(135deg, var(--main-dark), var(--main));
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.6s var(--motion-ease),
    visibility 0s linear 0s;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.6s var(--motion-ease),
    visibility 0s linear 0.6s;
}

.loading-screen__inner {
  display: grid;
  min-width: min(360px, 86vw);
  place-items: center;
  gap: 20px;
  text-align: center;
}

.loading-screen__logo-img {
  display: block;
  width: min(300px, 74vw);
  height: auto;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.2));
}

.loading-screen__text {
  display: none;
}

.loading-screen__bar {
  position: relative;
  overflow: hidden;
  width: min(320px, 72vw);
  height: 3px;
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(234, 241, 247, 0.16);
}

.loading-screen__bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(234, 241, 247, 0.92), rgba(200, 164, 93, 0.9));
  transform: scaleX(0);
  transform-origin: left;
  animation: loading-bar-grow 1.5s var(--motion-ease-soft) forwards;
}

@keyframes loading-bar-grow {
  to {
    transform: scaleX(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px var(--container-x);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}

.logo-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: calc(var(--radius) - 2px);
  background: var(--main);
  color: var(--gold);
  font-weight: 800;
}

.logo strong,
.logo small {
  display: block;
}

.logo strong {
  color: var(--main);
  font-size: 18px;
  line-height: 1.35;
}

.logo small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: #343434;
  font-size: 13px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--main);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(410px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  min-height: calc(100svh - 77px);
  padding: clamp(62px, 7.5vw, 110px) var(--container-x) clamp(54px, 6.5vw, 96px);
  background:
    radial-gradient(circle at 88% 18%, rgba(46, 95, 149, 0.44), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(200, 164, 93, 0.16), transparent 28%),
    linear-gradient(135deg, #061525 0%, #0f2a44 47%, #173a5e 100%);
  background-size: 150% 150%, 140% 140%, 100% 100%;
  color: #ffffff;
  animation: hero-gradient-drift 14s var(--motion-ease-soft) infinite alternate;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
  background-size: 74px 74px, auto;
  opacity: 0.36;
  animation: hero-pattern-drift 18s linear infinite;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: max(28px, 5vw);
  bottom: max(28px, 6vw);
  width: min(440px, 40vw);
  height: min(440px, 40vw);
  border: 1px solid rgba(200, 164, 93, 0.2);
  border-radius: 999px;
  content: "";
  opacity: 0.85;
  animation: hero-circle-float 10s var(--motion-ease-soft) infinite alternate;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.section-label,
.section-head span,
.recruit span,
.group-grid span {
  color: var(--main);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6.2vw, 82px);
  font-weight: 900;
  line-height: 1.1;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.22;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.4;
}

.hero-lead {
  color: #3f3f3f;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}

.hero-subcopy {
  margin: -8px 0 24px;
  color: var(--main);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.hero-text {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
}

.hero-support {
  margin: -4px 0 22px;
  color: #ffffff;
  font-size: clamp(19px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.55;
}

.hero .section-label {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
}

.button.primary {
  background: var(--main);
  color: #ffffff;
}

.button.secondary {
  border-color: var(--main);
  background: #ffffff;
  color: var(--main);
}

.button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #ffffff;
}

.media-frame,
.card-media,
.site-card__image,
.inline-gallery img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 16px 38px rgba(15, 42, 68, 0.1);
}

.media-frame,
.card-media,
.site-card__image {
  overflow: hidden;
}

.media-frame img,
.card-media img,
.site-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--large {
  min-height: clamp(360px, 46vw, 560px);
}

.media-frame--contain {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(234, 241, 247, 0.9), #ffffff);
}

.media-frame--contain img,
.card-media--contain img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 310px;
  object-fit: contain;
}

.card-media {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
}

.card-media--square {
  aspect-ratio: 1 / 1;
}

.card-media--contain {
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(135deg, rgba(234, 241, 247, 0.88), #ffffff);
}

.site-card__image {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
}

.inline-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inline-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.inline-gallery--compact img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 14px;
  background: #ffffff;
}

.hero .button.primary {
  background: #ffffff;
  color: var(--main);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-collage {
  position: relative;
  min-height: clamp(590px, 70vh, 760px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(234, 241, 247, 0.08), transparent 34%),
    radial-gradient(circle at 70% 22%, rgba(46, 95, 149, 0.62), transparent 31%),
    radial-gradient(circle at 26% 74%, rgba(200, 164, 93, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(5, 18, 32, 0.94), rgba(15, 42, 68, 0.92));
  background-size: 100% 100%, 140% 140%, 132% 132%, 100% 100%;
  box-shadow: var(--shadow-strong);
  animation: hero-visual-drift 12s var(--motion-ease-soft) infinite alternate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  animation: hero-slide-fade 15s ease-in-out infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 5s;
}

.hero-slide:nth-child(3) {
  animation-delay: 10s;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03) brightness(0.82);
  transform: scale(1.04);
  animation: hero-slide-zoom 15s ease-in-out infinite;
}

.hero-slide:nth-child(2) img {
  animation-delay: 5s;
}

.hero-slide:nth-child(3) img {
  animation-delay: 10s;
}

.hero-collage::before {
  position: absolute;
  inset: 8%;
  z-index: 1;
  content: "";
  border: 1px solid rgba(234, 241, 247, 0.13);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(255, 255, 255, 0.11) 48% 49%, transparent 49% 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 0.62;
  animation: hero-frame-float 10s var(--motion-ease-soft) infinite alternate;
}

.hero-collage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 27, 46, 0.2), rgba(15, 42, 68, 0.08) 48%, rgba(8, 27, 46, 0.28)),
    linear-gradient(180deg, rgba(15, 42, 68, 0.08) 45%, rgba(15, 42, 68, 0.42));
  pointer-events: none;
}

.hero-abstract__line {
  position: absolute;
  top: 18%;
  left: 14%;
  z-index: 3;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 93, 0.68), transparent);
  transform: rotate(-9deg);
  animation: hero-line-float 9s var(--motion-ease-soft) infinite alternate;
}

.hero-abstract__glow {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-abstract__glow--blue {
  top: 16%;
  right: 12%;
  width: 34%;
  aspect-ratio: 1;
  background: rgba(46, 95, 149, 0.46);
  animation: hero-glow-blue 10s var(--motion-ease-soft) infinite alternate;
}

.hero-abstract__glow--gold {
  left: 10%;
  bottom: 16%;
  width: 24%;
  aspect-ratio: 1;
  background: rgba(200, 164, 93, 0.24);
  animation: hero-glow-gold 11s var(--motion-ease-soft) infinite alternate;
}

.hero-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  width: min(340px, calc(100% - 44px));
  padding: 24px;
  border-left: 5px solid var(--gold);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  animation: hero-panel-float 9s var(--motion-ease-soft) infinite;
}

.hero-panel b,
.hero-panel span {
  display: block;
}

.hero-panel b {
  color: var(--main);
  font-size: 30px;
  line-height: 1.1;
}

.hero-panel span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: var(--section-y) var(--container-x);
}

.section-head {
  max-width: 920px;
  margin-bottom: clamp(42px, 5vw, 64px);
}

.section-head p {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 700;
}

.about,
.company,
.history,
.contact {
  background: var(--soft);
}

.about-wide,
.business-grid,
.brand-grid,
.product-grid,
.company-layout,
.group-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.about-wide {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
}

.about-wide article,
.about-wide aside,
.business-card,
.brand-grid article,
.product-card,
.profile-card,
.side-stack article,
.group-grid article,
.contact-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 28px;
}

.about-wide article {
  padding: clamp(28px, 4vw, 44px);
}

.section-photo {
  overflow: hidden;
  margin: 0 0 24px;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 16px 38px rgba(15, 42, 68, 0.1);
}

.section-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-photo--float {
  max-width: 420px;
}

.fact-list,
.profile-list,
.license-list {
  margin: 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list div:last-child {
  border-bottom: 0;
}

.fact-list dt,
.profile-list dt,
.license-list dt {
  color: var(--main);
  font-weight: 900;
}

.fact-list dd,
.profile-list dd,
.license-list dd {
  margin: 0;
  color: var(--muted);
}

.business-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.site-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 24px;
}

.site-card p:not(.business-role) {
  color: var(--muted);
}

.site-card h3 {
  min-height: 2.6em;
}

.site-card p:not(.business-role) {
  min-height: 4.8em;
}

.site-card .button {
  width: 100%;
  margin-top: auto;
}

.business-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(30px, 3vw, 40px);
}

.business-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--main);
  content: "";
}

.business-card.accent::before {
  background: var(--gold);
}

.card-number {
  margin-bottom: 34px;
  color: rgba(15, 42, 68, 0.12);
  font-size: clamp(68px, 7vw, 96px);
  font-weight: 900;
  line-height: 1;
}

.business-card p,
.brand-grid p,
.group-grid p,
.contact-grid p {
  color: var(--muted);
}

.business-role {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(15, 42, 68, 0.18);
  border-radius: 4px;
  background: #F5F8FB;
  color: var(--main) !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.ebisenka-logo {
  display: block;
  width: min(300px, 92%);
  height: auto;
  object-fit: contain;
}

.ebisenka-logo--card {
  width: min(330px, 100%);
  margin: 0 0 22px;
}

.ebisenka-logo--page {
  width: min(440px, 92%);
  margin: 0 0 22px;
}

.ebisenka-logo--center {
  margin-right: auto;
  margin-left: auto;
}

.business-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.business-card li {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  font-weight: 800;
}

.business-card a,
.brand-grid a {
  color: var(--main);
  font-weight: 900;
}

.business-card > a {
  margin-top: auto;
}

.brands {
  background: #ffffff;
}

.brand-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
  margin-bottom: 34px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.brand-copy h3 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.14;
}

.brand-summary {
  display: grid;
  gap: 0;
  margin: 22px 0 26px;
  border-top: 1px solid var(--line);
}

.brand-summary div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.brand-summary dt {
  color: var(--main);
  font-weight: 900;
}

.brand-summary dd {
  margin: 0;
  color: var(--muted);
}

.brand-photo {
  display: grid;
  min-height: 240px;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 42, 68, 0.18), rgba(200, 164, 93, 0.18)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.7) 0 12px, rgba(255, 255, 255, 0.3) 12px 24px),
    #152235;
  color: #ffffff;
  text-align: center;
}

.brand-photo {
  background:
    radial-gradient(circle at 72% 24%, rgba(46, 95, 149, 0.26), transparent 36%),
    linear-gradient(135deg, rgba(15, 42, 68, 0.92), rgba(8, 27, 46, 0.96));
}

.brand-photo span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.brand-photo strong {
  display: block;
  font-size: 30px;
}

.large-photo {
  min-height: clamp(540px, 58vw, 700px);
}

.brand-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: stretch;
}

.product-visual {
  min-height: 280px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 18%, rgba(200, 164, 93, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(15, 42, 68, 0.82), rgba(8, 27, 46, 0.86)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.08) 50% 75%, transparent 75%);
  background-size: auto, 32px 32px;
}

.product-visual.shaoxing {
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.65), rgba(15, 42, 68, 0.88)),
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.24), transparent 28%),
    #081B2E;
}

.company-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: start;
}

.profile-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list div:last-child {
  border-bottom: 0;
}

.profile-list a {
  color: var(--main);
  font-weight: 800;
  word-break: break-word;
}

.side-stack {
  display: grid;
  gap: 22px;
}

.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plain-list li {
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-weight: 800;
}

.license-list div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.license-list div:last-child {
  border-bottom: 0;
}

.timeline {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.timeline li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline time {
  color: var(--main);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.group-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recruit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(115deg, var(--main), var(--main-dark));
  color: #ffffff;
}

.recruit span {
  color: var(--gold);
}

.recruit p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-layout {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
}

.contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  margin-bottom: 12px;
  color: var(--main);
  font-size: clamp(28px, 3vw, 40px);
}

.contact-form-card > p {
  margin-bottom: 30px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full,
.form-actions,
.contact-phone-note {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.form-field label span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--main);
  font-size: 11px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
  transition: border-color 0.25s var(--motion-ease), box-shadow 0.25s var(--motion-ease);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sub);
  box-shadow: 0 0 0 4px rgba(46, 95, 149, 0.14);
}

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

.form-actions {
  margin-top: 8px;
}

.form-actions .button {
  min-width: 220px;
  border: 0;
  cursor: pointer;
}

.contact-phone-note {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
}

.contact-phone-note strong {
  color: var(--main);
}

.contact-logo-card {
  display: grid;
  min-height: 150px;
  margin: 0 0 22px;
  place-items: center;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(135deg, #ffffff, var(--soft));
}

.contact-logo-card img {
  display: block;
  width: min(150px, 56%);
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.contact-text {
  color: var(--main);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}

.contact-text.sub {
  font-size: 24px;
}

.footer {
  padding: 34px var(--container-x);
  background: #081B2E;
  color: rgba(255, 255, 255, 0.78);
}

.footer strong {
  color: #ffffff;
}

.footer-brand {
  display: grid;
  gap: 4px;
  width: fit-content;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  font-size: 18px;
  line-height: 1.35;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 14px 0;
  font-size: 13px;
  font-weight: 900;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer p {
  margin-bottom: 0;
}

/* Shared lower-page components */
.page-title {
  padding: clamp(54px, 7vw, 92px) var(--container-x) clamp(42px, 6vw, 72px);
  background:
    linear-gradient(115deg, rgba(15, 42, 68, 0.96), rgba(8, 27, 46, 0.94)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.06) 50% 75%, transparent 75%);
  background-size: auto, 36px 36px;
  color: #ffffff;
}

.page-title .section-label {
  color: var(--gold);
}

.page-title h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 64px);
}

.page-title p {
  max-width: 860px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px var(--container-x);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--main);
}

.breadcrumb span::before {
  margin-right: 8px;
  color: #b7b7b7;
  content: "/";
}

.lead-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: clamp(22px, 3vw, 32px);
  align-items: center;
}

.lead-block .media-frame--large {
  width: 100%;
  max-width: 520px;
  height: clamp(340px, 32vw, 380px);
  min-height: 0;
  justify-self: center;
  aspect-ratio: 4 / 3;
}

.lead-block .media-frame--large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lead-panel,
.content-card,
.data-card,
.cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: clamp(24px, 4vw, 40px);
}

.lead-panel {
  box-shadow: var(--shadow);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.products .content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.products .content-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.products .card-media {
  min-height: 210px;
}

.liquor-lead .lead-block {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
}

.liquor-lead__media {
  max-width: 540px;
  height: clamp(300px, 30vw, 350px);
}

.liquor-lead__media img {
  object-position: center;
}

.liquor-products .content-card {
  padding: clamp(22px, 3vw, 32px);
}

.liquor-products .card-media {
  min-height: 0;
  height: 220px;
  margin-bottom: 20px;
}

.liquor-products .card-media--contain img {
  max-height: 178px;
}

.liquor-products__wide-media img {
  object-position: center;
}

.liquor-products__process-media {
  height: 260px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(234, 241, 247, 0.9), #ffffff);
}

.liquor-products__process-media img {
  object-fit: contain;
  object-position: center;
}

.process-section {
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(15, 42, 68, 0.08);
}

.process-card figure {
  display: grid;
  min-height: 150px;
  margin: 0 0 16px;
  place-items: center;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(135deg, rgba(234, 241, 247, 0.95), #ffffff);
}

.process-card img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.process-card span {
  width: fit-content;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-card h3 {
  margin-bottom: 8px;
  color: var(--main);
  font-size: 19px;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.content-card h3,
.data-card h3 {
  color: var(--main);
}

.content-card p,
.data-card p {
  color: var(--muted);
}

.data-list {
  margin: 0;
}

.data-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.data-list div:last-child {
  border-bottom: 0;
}

.data-list dt {
  color: var(--main);
  font-weight: 900;
}

.data-list dd {
  margin: 0;
  color: var(--muted);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(115deg, var(--main), var(--main-dark));
  color: #ffffff;
}

.cta-box p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-box .button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #ffffff;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.visual-band {
  min-height: 280px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 28%, rgba(46, 95, 149, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(15, 42, 68, 0.12), rgba(200, 164, 93, 0.1)),
    var(--soft);
}

.image-area {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius);
  background: var(--soft);
}

.image-area img,
.image-area picture {
  display: block;
  width: 100%;
  height: 100%;
}

.image-area img {
  object-fit: cover;
}

.image-area--wide {
  min-height: clamp(300px, 38vw, 520px);
}

.image-area--square {
  aspect-ratio: 1 / 1;
  min-height: auto;
}

.image-area--brand {
  min-height: clamp(320px, 42vw, 560px);
}

@media (max-width: 1100px) {
  .hero,
  .about-wide,
  .lead-block,
  .brand-feature,
  .product-card,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .business-grid,
  .product-grid,
  .content-grid,
  .site-grid,
  .group-grid,
  .inline-gallery,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo {
    min-width: 0;
  }

  .nav {
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    max-width: none;
  }

  .hero-collage {
    min-height: 360px;
  }

  .lead-block .media-frame--large {
    max-width: none;
    height: clamp(220px, 58vw, 260px);
    justify-self: stretch;
    aspect-ratio: auto;
  }

  .liquor-lead .lead-block {
    grid-template-columns: 1fr;
  }

  .site-card h3,
  .site-card p:not(.business-role) {
    min-height: 0;
  }

  .liquor-products .card-media {
    height: 210px;
  }

  .liquor-products__process-media {
    height: 230px;
  }

  .hero-actions,
  .recruit {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .business-grid,
  .brand-grid,
  .product-grid,
  .content-grid,
  .site-grid,
  .two-column,
  .group-grid,
  .contact-grid,
  .contact-form,
  .inline-gallery,
  .process-grid,
  .products .content-grid {
    grid-template-columns: 1fr;
  }

  .profile-list div,
  .fact-list div,
  .data-list div,
  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cta-box {
    align-items: stretch;
    flex-direction: column;
  }

  .large-photo {
    min-height: 300px;
  }

  .image-area,
  .image-area--wide,
  .image-area--brand {
    min-height: 260px;
  }
}

/* Motion */
body.is-loading {
  overflow: hidden;
}

body.is-loaded {
  animation: page-soft-reveal 0.7s var(--motion-ease) both;
}

.loading-screen__inner {
  animation: loading-inner-settle 1s var(--motion-ease-soft) both;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 0.42s var(--motion-ease);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero-content h1,
.hero-content .hero-text,
.hero-content .hero-actions {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-copy-in 0.82s var(--motion-ease-soft) forwards;
}

.hero-content h1 {
  animation-delay: 0.16s;
}

.hero-content .hero-text {
  animation-delay: 0.38s;
}

.hero-content .hero-actions {
  animation-delay: 0.58s;
}

.button {
  position: relative;
  gap: 8px;
  box-shadow: 0 0 0 rgba(34, 34, 34, 0);
  transition:
    transform 0.38s var(--motion-ease),
    box-shadow 0.38s var(--motion-ease),
    background-color 0.38s var(--motion-ease),
    border-color 0.38s var(--motion-ease),
    color 0.38s var(--motion-ease);
}

.button::after {
  content: "→";
  transform: translateX(0);
  font-size: 13px;
  line-height: 1;
  opacity: 0.72;
  transition:
    transform 0.38s var(--motion-ease),
    opacity 0.38s var(--motion-ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(34, 34, 34, 0.12);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(4px);
  opacity: 1;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--main-dark);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--main-dark);
  background: #F5F8FB;
}

.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s var(--motion-ease-soft),
    transform 0.9s var(--motion-ease-soft);
  transition-delay: var(--reveal-delay, 0s);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.business-card,
.site-card,
.content-card,
.brand-grid article,
.product-card,
.data-card,
.group-grid article,
.contact-grid article,
.side-stack article,
.lead-panel,
.profile-card,
.cta-box {
  transform: translateY(0);
  transition:
    transform 0.42s var(--motion-ease),
    box-shadow 0.42s var(--motion-ease),
    border-color 0.42s var(--motion-ease);
}

.business-card:hover,
.site-card:hover,
.content-card:hover,
.brand-grid article:hover,
.product-card:hover,
.data-card:hover,
.group-grid article:hover,
.contact-grid article:hover,
.side-stack article:hover,
.lead-panel:hover,
.profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 93, 0.58);
  box-shadow: 0 16px 36px rgba(34, 34, 34, 0.09);
}

.card-number {
  transition:
    color 0.42s var(--motion-ease),
    transform 0.42s var(--motion-ease);
}

.is-visible .card-number,
.business-card:hover .card-number {
  color: rgba(15, 42, 68, 0.18);
  transform: translateY(-2px);
}

.brand-photo,
.visual-band,
.product-visual {
  transition:
    transform 0.5s var(--motion-ease),
    filter 0.5s var(--motion-ease);
}

.brand-feature:hover .brand-photo,
.content-card:hover .brand-photo,
.lead-block:hover .visual-band,
.product-card:hover .product-visual {
  transform: scale(1.008);
  filter: saturate(1.04);
}

.image-area img {
  transition: transform 0.6s var(--motion-ease);
}

.image-area:hover img {
  transform: scale(1.025);
}

@keyframes loading-inner-settle {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-slide-fade {
  0%,
  31% {
    opacity: 1;
  }

  38%,
  93% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hero-slide-zoom {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.095) translate3d(-1.4%, -1.1%, 0);
  }

  100% {
    transform: scale(1.06) translate3d(1%, 0.8%, 0);
  }
}

@keyframes hero-gradient-drift {
  from {
    background-position: 0% 0%, 0% 100%, 0 0;
  }
  to {
    background-position: 100% 28%, 32% 38%, 0 0;
  }
}

@keyframes hero-pattern-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 74px 42px, 0 0;
  }
}

@keyframes hero-circle-float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-22px, -24px, 0) scale(1.04);
  }
}

@keyframes hero-visual-drift {
  from {
    background-position: 0 0, 70% 22%, 26% 74%, 0 0;
  }
  to {
    background-position: 0 0, 50% 34%, 40% 60%, 0 0;
  }
}

@keyframes hero-frame-float {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(14px, -14px, 0);
  }
}

@keyframes hero-line-float {
  from {
    transform: rotate(-9deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(-9deg) translate3d(20px, 12px, 0);
  }
}

@keyframes hero-glow-blue {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate3d(-32px, 22px, 0) scale(1.12);
    opacity: 0.9;
  }
}

@keyframes hero-glow-gold {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate3d(24px, -24px, 0) scale(1.1);
    opacity: 0.86;
  }
}

@keyframes hero-panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes page-soft-reveal {
  from {
    opacity: 0.985;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .js-reveal {
    transform: translateY(14px);
    transition-duration: 0.62s;
  }

  .business-card:hover,
  .site-card:hover,
  .content-card:hover,
  .brand-grid article:hover,
  .product-card:hover,
  .data-card:hover,
  .group-grid article:hover,
  .contact-grid article:hover,
  .side-stack article:hover,
  .lead-panel:hover,
  .profile-card:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(34, 34, 34, 0.08);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js-reveal,
  .hero-content h1,
  .hero-content .hero-lead,
  .hero-content .hero-subcopy,
  .hero-content .hero-support,
  .hero-content .hero-text,
  .hero-content .hero-actions {
    opacity: 1;
    transform: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }

}
