/* =============================================================
   Purpoire Corporate Site — Main Stylesheet
   Design Concept: Natural & Professional
   Color Palette:
     Sand Beige:     #f5ede0 / #ede3d3 / #e0d4c7
     Champagne Gold: #b89d72
     Charcoal:       #3a3530
     Text:           #5c5248
   ============================================================= */

/* ------- Reset / Base ------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Serif JP', 'Noto Sans JP', serif;
  color: #3a3530;
  background-color: #faf6f1;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ------- CSS Variables ------- */
:root {
  --color-beige-light: #faf6f1;
  --color-beige-1:     #f5ede0;
  --color-beige-2:     #ede3d3;
  --color-beige-3:     #e0d4c7;
  --color-gold:        #b89d72;
  --color-gold-dark:   #9a7f55;
  --color-charcoal:    #2d2925;
  --color-charcoal-2:  #3a3530;
  --color-text:        #5c5248;
  --color-text-light:  #8c7e72;
  --color-white:       #ffffff;

  --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-sans:  'Noto Sans JP', sans-serif;
  --font-en:    'Cormorant Garamond', serif;

  --max-width: 1100px;
  --section-pad: 100px;
}

/* ------- Container ------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ------- Section Base ------- */
.section { padding: var(--section-pad) 0; }
.section--light  { background-color: var(--color-beige-1); }
.section--beige  { background-color: var(--color-beige-2); }
.section--dark   { background-color: var(--color-charcoal-2); color: var(--color-beige-1); }
.section--vision {
  background-color: var(--color-charcoal);
  color: var(--color-beige-1);
  text-align: center;
  padding: 120px 0;
}

/* ------- Section Header ------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 12px;
}
.label--light { color: var(--color-gold); }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--color-charcoal-2);
}
.heading--light { color: var(--color-beige-1); }

.section-desc {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--color-text-light);
  font-family: var(--font-sans);
  line-height: 1.9;
}

/* ------- Fade-in Animation ------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px 0 clamp(40px, 7vw, 120px);
  background: rgba(250, 246, 241, 0.82);
  backdrop-filter: blur(6px);
  transition: background 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: rgba(250, 246, 241, 0.96);
  box-shadow: 0 2px 20px rgba(58, 53, 48, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 100%;
  margin: 0;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  width: clamp(120px, 11vw, 155px);
  height: auto;
  display: block;
  object-fit: contain;
}
.logo-img--footer {
  filter: brightness(0) invert(1) opacity(0.75);
}

/* Nav */
.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-list a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--color-charcoal-2);
  transition: color 0.2s;
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.25s;
}
.nav-list a:hover { color: var(--color-gold-dark); }
.nav-list a:hover::after { width: 100%; }

.nav-cta {
  background: var(--color-charcoal-2);
  color: var(--color-beige-1) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--color-gold-dark) !important; }

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
#hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--color-charcoal-2);
  transition: transform 0.3s, opacity 0.3s;
}
#hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO — Full-screen Video Background
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 動画ラッパー */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* スマホ対応 */
  -webkit-overflow-scrolling: touch;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.75) brightness(1.05);
  /* GPU加速・スマホ自動再生対応 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  /* iOSでのビデオ表示バグ修正 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* ベージュ＋明るさのオーバーレイ */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250,246,241,0.78) 0%,
    rgba(245,237,224,0.60) 40%,
    rgba(240,232,218,0.45) 100%
  );
}

/* ゴールドライン装飾（非表示に） */
.hero-diagonal { display: none; }

/* テキストパネル：全幅・中央揃え */
.hero-text-panel {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 0;
}

/* 動くゴールドライン装飾 */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hline {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  animation: hlineSlide 6s ease-in-out infinite;
  opacity: 0;
}
.hline--1 { width: 60%; top: 22%; animation-delay: 0s; }
.hline--2 { width: 40%; top: 55%; animation-delay: 1.4s; }
.hline--3 { width: 50%; top: 78%; animation-delay: 2.6s; }
@keyframes hlineSlide {
  0%   { opacity: 0; transform: translateX(-100%); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateX(120%); }
}

/* テキストコンテンツ — 左寄せ、最大幅を絞って読みやすく */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin-left: 0;
  padding: 140px 40px 100px clamp(40px, 7vw, 120px);
}

/* Hero eyebrow */
.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--color-gold-dark);
  margin-bottom: 24px;
  display: block;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--color-charcoal);
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.5s both;
}
.hero-heading .hline-block {
  display: block;
  white-space: nowrap;
}
.hero-heading .em {
  color: var(--color-gold-dark);
  font-style: italic;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  color: var(--color-charcoal-2);
  line-height: 2.1;
  margin-bottom: 44px;
  animation: fadeUp 1s ease 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.9s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 26%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
  animation: fadeUp 1s ease 1.2s both;
}
.scroll-line {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-text {
  font-family: var(--font-en);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-primary {
  background: var(--color-charcoal-2);
  color: var(--color-beige-1);
}
.btn-primary:hover { background: var(--color-gold-dark); }
.btn-outline {
  border: 1px solid var(--color-charcoal-2);
  color: var(--color-charcoal-2);
}
.btn-outline:hover {
  background: var(--color-charcoal-2);
  color: var(--color-beige-1);
}
.btn--wide { padding: 16px 56px; font-size: 0.9rem; }

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text .section-label { text-align: left; }
.about-text .section-heading { margin-bottom: 28px; }
.about-body {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 2;
  margin-bottom: 14px;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

.about-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg, var(--color-beige-1));
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(58,53,48,0.1);
}

.service-num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(184,157,114,0.3);
  line-height: 1;
  margin-bottom: 10px;
}

.service-icon {
  font-size: 1.4rem;
  color: var(--color-gold-dark);
  margin-bottom: 16px;
}

.service-title {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-charcoal-2);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.service-title-ja {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  display: block;
  margin-top: 4px;
}

.service-body {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 2;
  margin-bottom: 8px;
}

/* Service link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--color-gold-dark);
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.service-link:hover {
  color: var(--color-charcoal-2);
  border-color: var(--color-charcoal-2);
}
.service-link i {
  font-size: 0.72rem;
}

/* Service value */
.service-value {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.55);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 3px 3px 0;
}
.service-value-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--color-gold-dark);
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
}
.service-value-text {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--color-charcoal-2);
  line-height: 1.75;
  font-weight: 400;
}

/* Service tags */
.service-tags {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(58,53,48,0.1);
}
.service-tags-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--color-gold-dark);
  margin-bottom: 10px;
  font-weight: 500;
}
.service-tags-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-tags-list li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-text);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.service-tags-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.7rem;
}

/* ============================================================
   VALUE
============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-card {
  padding: 32px 24px;
  border: 1px solid rgba(250,246,241,0.12);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.value-card:hover {
  background: rgba(250,246,241,0.05);
  border-color: rgba(184,157,114,0.35);
}

.value-num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(184,157,114,0.4);
  line-height: 1;
  margin-bottom: 16px;
}

.value-title {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-beige-1);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.value-title-ja {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--color-gold);
  display: block;
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.value-body {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(250,246,241,0.6);
  line-height: 1.9;
}

/* ============================================================
   MESSAGE
============================================================ */
.message-inner {
  max-width: 680px;
  margin: 0 auto;
}
.message-inner .section-label,
.message-inner .section-heading {
  margin-bottom: 36px;
}

.message-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.85;
  color: var(--color-charcoal-2);
  border-left: 3px solid var(--color-gold);
  padding: 8px 0 8px 28px;
  margin-bottom: 28px;
}

.message-body {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 2;
  margin-bottom: 16px;
}

.message-sign {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-charcoal-2);
  margin-top: 32px;
  letter-spacing: 0.08em;
  text-align: right;
}

/* ============================================================
   COMPANY
============================================================ */
.company-table-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table th,
.company-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-beige-2);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.75;
}
.company-table th {
  width: 160px;
  color: var(--color-text-light);
  font-weight: 400;
  white-space: nowrap;
}
.company-table td { color: var(--color-charcoal-2); }
.company-table td a {
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group { margin-bottom: 28px; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-charcoal-2);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.required {
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 6px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--color-beige-3);
  background: var(--color-white);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-charcoal-2);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--color-gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { text-align: center; margin-top: 8px; }
.form-result {
  margin-top: 20px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  min-height: 24px;
}
.form-result.success { color: var(--color-gold-dark); }
.form-result.error   { color: #b04040; }

/* ============================================================
   VISION
============================================================ */
.vision-inner { max-width: 640px; margin: 0 auto; }

.vision-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--color-beige-1);
  margin: 24px 0 36px;
}

.vision-body {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(250,246,241,0.65);
  line-height: 2;
}

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: var(--color-charcoal);
  padding: 48px 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo .logo-img--footer {
  width: 120px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(250,246,241,0.55);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--color-gold); }

.footer-copy {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(250,246,241,0.3);
}

/* ============================================================
   BACK TO TOP
============================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--color-charcoal-2);
  color: var(--color-beige-1);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 4px 16px rgba(58,53,48,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  z-index: 99;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--color-gold-dark); }

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
============================================================ */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .container { padding: 0 28px; }

  /* Header */
  #site-header { padding: 0 28px; }
  .logo-img { width: clamp(90px, 12vw, 120px); }
  #hamburger { display: flex; }
  #main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--color-beige-light);
    padding: 100px 40px 40px;
    box-shadow: -4px 0 32px rgba(58,53,48,0.12);
    transition: right 0.35s ease;
    z-index: 99;
  }
  #main-nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 28px; }
  .nav-list a { font-size: 1rem; }
  .nav-cta { display: inline-block; margin-top: 8px; }

  /* Hero */
  .hero-text-panel { width: 100%; }
  .hero-content { padding: 100px 28px 60px 28px; max-width: 560px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 240px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Value */
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .value-grid .value-card:last-child { grid-column: 1 / -1; max-width: 360px; margin: 0 auto; width: 100%; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
============================================================ */
@media (max-width: 600px) {
  :root { --section-pad: 56px; }
  .container { padding: 0 20px; }
  #site-header { padding: 0 20px; }
  .logo-img { width: 90px; }

  /* Hero */
  #hero { min-height: 100svh; }
  .hero-video-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .hero-text-panel { width: 100%; min-height: 100svh; }
  .hero-content { padding: 100px 20px 60px 20px; max-width: 100%; }
  .hero-heading { font-size: 1.8rem; }
  .hero-sub { font-size: 0.85rem; }
  .hero-actions { flex-direction: column; }
  .hero-scroll { left: 50%; }

  /* Value */
  .value-grid { grid-template-columns: 1fr; }
  .value-grid .value-card:last-child { grid-column: auto; max-width: 100%; }

  /* Company */
  .company-table th { width: 100px; padding: 14px 12px; }
  .company-table td { padding: 14px 12px; }

  #back-to-top { bottom: 20px; right: 20px; }
}
