:root {
  --ink: #20211f;
  --muted: #6a6f68;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #ddd8cf;
  --charcoal: #242827;
  --copper: #a8663b;
  --leaf: #59745b;
  --saffron: #d9a441;
  --blue: #315b73;
  --shadow: 0 18px 50px rgba(32, 33, 31, 0.14);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(rgba(24, 27, 26, 0.74), rgba(24, 27, 26, 0.36));
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 28px);
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
}

.nav-contact {
  border: 1px solid rgba(255, 255, 255, 0.56);
  padding: 10px 14px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("./assets/hero-restaurant.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 18, 17, 0.88) 0%, rgba(16, 18, 17, 0.58) 45%, rgba(16, 18, 17, 0.14) 100%),
    linear-gradient(180deg, rgba(16, 18, 17, 0.42), rgba(16, 18, 17, 0.22));
}

.hero-inner {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6.4vw, 5.9rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 2;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--copper);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--charcoal);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metrics div {
  display: grid;
  gap: 4px;
  min-height: 118px;
  place-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  color: var(--leaf);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-head h2,
.recruit h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.recruit p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

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

.business-card,
.brand-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.business-card {
  min-height: 260px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.business-card .icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.business-card h3,
.brand-list h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
}

.business-card p,
.brand-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  background: #f1eee7;
}

.brand-list {
  display: grid;
  gap: 14px;
}

.brand-list article {
  padding: 24px;
}

.brand-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 700;
}

.company-band {
  background: var(--charcoal);
  color: var(--white);
}

.company-band .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.company-table {
  width: min(1000px, 100%);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.company-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.company-table dt {
  color: rgba(255, 255, 255, 0.62);
}

.company-table dd {
  margin: 0;
}

.recruit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(90deg, rgba(89, 116, 91, 0.13), rgba(217, 164, 65, 0.14));
}

.recruit > div {
  width: min(760px, 100%);
}

.contact {
  background: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(980px, 100%);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form .full,
.contact-form .submit {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

textarea {
  resize: vertical;
}

.submit {
  width: min(220px, 100%);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #171a19;
}

.footer p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-inner {
    width: calc(100% - 36px);
    margin: 0 auto;
  }

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

  .metrics div:nth-child(2) {
    border-right: 0;
  }

  .metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .business-grid,
  .split,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .recruit {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 18, 17, 0.9), rgba(16, 18, 17, 0.55)),
      linear-gradient(180deg, rgba(16, 18, 17, 0.32), rgba(16, 18, 17, 0.44));
  }

  .hero-actions {
    display: grid;
  }

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

  .metrics div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer {
    flex-direction: column;
  }
}
