/* ===== リセット & ベース ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0d1b2e;
  --navy-mid:  #112240;
  --navy-card: #172a45;
  --blue:      #2563eb;
  --blue-light:#3b82f6;
  --gold:      #c9a84c;
  --gold-light:#e8c97a;
  --white:     #ffffff;
  --bg:        #f5f7fa;
  --bg-mid:    #edf0f5;
  --card-bg:   #ffffff;
  --gray-100:  #f0f4f8;
  --gray-300:  #cbd5e1;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-600:  #475569;
  --gray-800:  #1e293b;
  --text:      #1e293b;
  --text-muted:#64748b;
  --radius:    14px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ===== アニメーション ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ===== ナビバー ===== */
#header {
  position: fixed; top: 0; width: 100%; z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(12px);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
}
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }
.nav-links {
  list-style: none; display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: var(--white); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
#header.scrolled .nav-links a { color: var(--gray-800); }
#header.scrolled .nav-links a:hover { color: var(--blue); }
#header.scrolled .nav-cta { color: var(--navy) !important; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ハンバーガー */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
#header.scrolled .hamburger span { background: var(--gray-800); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu ul { list-style: none; padding: 12px 0; }
.mobile-menu a {
  display: block; padding: 14px 32px;
  color: var(--gray-800); text-decoration: none; font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:hover { color: var(--blue); }

/* ===== ヒーロー ===== */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0d1b2e 0%, #112240 55%, #0a1628 100%);
  padding-top: 80px;
}
.hero-left {
  padding: 60px 40px 60px 64px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-company-en {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.9;
}
.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-headline-accent {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(201,168,76,0.4);
}
.hero-sub {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.6);
  line-height: 2;
  margin-bottom: 28px;
}
.hero-services-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; margin-bottom: 40px;
}
.hero-services-row span {
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.hero-sep { color: var(--gold); opacity: 0.5; margin: 0 10px; font-size: 0.7rem; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; font-family: inherit;
  text-decoration: none; cursor: pointer;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline-white:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-2px);
}
.hero-right {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-wrap {
  position: relative; width: 100%; height: 100%;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, #0d1b2e 0%, transparent 30%),
              linear-gradient(to top, #0d1b2e 0%, transparent 20%);
}
.hero-photo-badge {
  position: absolute; bottom: 48px; left: 32px; z-index: 2;
  background: rgba(13,27,46,0.85);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 12px; padding: 16px 24px;
  backdrop-filter: blur(12px);
  text-align: center;
}
.badge-num { display: block; font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1.1; }
.badge-label { display: block; font-size: 0.75rem; color: var(--gray-400); margin-top: 4px; letter-spacing: 0.05em; }

/* スクロールインジケーター */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
}
.hero-scroll span {
  display: block; width: 2px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.7)} 50%{opacity:1;transform:scaleY(1)} }

/* ===== ボタン ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 36px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; font-family: inherit;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }

/* ===== 数字実績 ===== */
.stats {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 16px 40px; }
.stat-num {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.stat-num span { font-size: 0.55em; color: var(--gold); margin-left: 2px; }
.stat-label { font-size: 0.82rem; color: var(--gray-400); margin-top: 6px; letter-spacing: 0.05em; }
.stat-divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ===== セクション共通 ===== */
.section { padding: 100px 0; }
.section-label {
  text-align: center;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gray-800);
  margin-bottom: 16px;
}
.section-title::after {
  content: ''; display: block;
  width: 48px; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 16px auto 0; border-radius: 2px;
}
.section-sub {
  text-align: center;
  color: var(--gray-400);
  font-size: 1rem;
  margin-top: 16px;
  margin-bottom: 60px;
  line-height: 2;
}

/* ===== 代表について ===== */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 60px; align-items: start;
  margin-top: 56px;
}
.about-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.about-photo-frame {
  width: 260px; height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(201,168,76,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.about-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.about-name-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 20px 28px;
  width: 100%;
  box-shadow: var(--shadow);
}
.about-name-ja { font-size: 1.4rem; font-weight: 900; color: var(--gray-800); }
.about-name-role { font-size: 0.78rem; color: var(--blue); margin: 6px 0 4px; letter-spacing: 0.05em; }
.about-name-en { font-size: 0.82rem; color: var(--gray-400); }

.about-quote {
  font-size: 1.1rem; font-weight: 700;
  color: var(--gray-800);
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  margin-bottom: 28px;
  background: rgba(201,168,76,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.8;
}
.about-body p {
  color: var(--gray-600); margin-bottom: 16px; font-size: 0.97rem;
}
.about-body strong { color: var(--gray-800); }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--blue);
  font-size: 0.8rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
}

/* ===== サービス ===== */
.services { background: var(--bg-mid); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.service-no {
  font-size: 0.75rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-icon-wrap svg { width: 44px; height: 44px; margin-bottom: 16px; display: block; }
.service-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--gray-800); margin-bottom: 12px;
}
.service-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.85; }

.service-card--cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: none;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-md);
}
.service-cta-inner { display: flex; flex-direction: column; gap: 12px; }
.service-cta-label { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; font-weight: 700; }
.service-card--cta h3 { font-size: 1.7rem; font-weight: 900; color: var(--white); line-height: 1.3; }
.service-card--cta p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.8; }

/* ===== ライフスタイルギャラリー ===== */
.lifestyle {
  background: var(--navy);
  padding-bottom: 0;
}
.lifestyle-header {
  padding: 80px 24px 48px;
  max-width: 1080px; margin: 0 auto;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 4px;
}
.lifestyle-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.lifestyle-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.lifestyle-item:hover img { transform: scale(1.06); }
.lifestyle-item--tall { grid-row: span 2; }
.lifestyle-item--wide { grid-column: span 2; }
.lifestyle-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.85) 0%, rgba(13,27,46,0.1) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.3s;
}
.lifestyle-item:hover .lifestyle-overlay {
  background: linear-gradient(to top, rgba(13,27,46,0.92) 0%, rgba(13,27,46,0.3) 60%);
}
.lifestyle-tag {
  display: inline-block;
  background: rgba(201,168,76,0.85); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 10px; align-self: flex-start;
}
.lifestyle-overlay p {
  font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.5;
}

/* ===== お客様の声 ===== */
.voice { background: var(--bg); }
.voice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 16px;
}
.voice-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow);
}
.voice-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.voice-text {
  font-size: 0.88rem; color: var(--gray-600); line-height: 1.9;
  flex: 1;
}
.voice-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.voice-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.voice-name { font-size: 0.9rem; font-weight: 700; color: var(--gray-800); }
.voice-role { font-size: 0.78rem; color: var(--gray-400); }

/* ===== 料金 ===== */
.price { background: var(--bg-mid); }
.price-wrap {
  display: flex; gap: 24px; justify-content: center;
  align-items: stretch; margin-top: 16px; flex-wrap: wrap;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 40px 36px;
  width: 340px; max-width: 100%;
  position: relative;
  display: flex; flex-direction: column; gap: 24px;
  box-shadow: var(--shadow);
}
.price-card--main {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.15), var(--shadow-md);
}
.price-card--free { border-color: rgba(201,168,76,0.4); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  padding: 5px 18px; border-radius: 50px; white-space: nowrap;
}
.price-name { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); }
.price-amount { display: flex; align-items: baseline; gap: 4px; }
.price-num { font-size: 2.6rem; font-weight: 900; color: var(--gray-800); }
.price-unit { font-size: 0.9rem; color: var(--gray-500); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--gray-600); }
.check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.price-note { text-align: center; font-size: 0.78rem; color: var(--gray-600); margin-top: -12px; }

/* ===== お問い合わせ ===== */
.contact { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 60px; align-items: start;
  margin-top: 16px;
}
.contact-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 24px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  font-size: 1.1rem; color: var(--gold);
  width: 28px; text-align: center; flex-shrink: 0; margin-top: 2px;
}
.contact-list a { color: var(--gray-700); text-decoration: none; transition: color 0.2s; }
.contact-list a:hover { color: var(--blue); }
.contact-list span { color: var(--gray-500); font-size: 0.9rem; line-height: 1.8; }

.line-btn-wrap { margin-top: 32px; }
.line-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #06c755; color: white; font-weight: 700;
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; font-size: 1rem;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(6,199,85,0.35);
}
.line-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.88rem; color: var(--text); font-weight: 600; }
.req {
  font-size: 0.7rem; background: rgba(37,99,235,0.2);
  color: var(--blue-light); padding: 2px 7px; border-radius: 4px;
  margin-left: 6px; font-weight: 700;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--gray-800);
  font-size: 0.95rem; font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--white); color: var(--gray-800); }

.form-success {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  grid-column: 2;
  box-shadow: var(--shadow);
}
.success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 1.3rem; color: var(--gray-800); margin-bottom: 12px; }
.form-success p { color: var(--gray-500); line-height: 2; }

/* ===== フッター ===== */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; margin-bottom: 40px; flex-wrap: wrap;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 10px; }
.footer-tagline { color: var(--gray-600); font-size: 0.85rem; }
.footer-links {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px 24px;
  margin-bottom: 20px;
}
.footer-links a { color: var(--gray-400); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--gray-600); font-size: 0.82rem; line-height: 2; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px; text-align: center;
}
.footer-bottom p { color: var(--gray-600); font-size: 0.8rem; }

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
  .navbar { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* ヒーロー: スタック */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 32px 40px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-services-row { justify-content: center; }
  .hero-right { height: 55vw; min-height: 300px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; }
  .about-photo-frame { width: 180px; height: 220px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-success { grid-column: 1; }
  .stats-grid { gap: 0; }
  .stat-divider { display: none; }
  .stat-item { padding: 12px 24px; min-width: 50%; }

  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .lifestyle-item--tall { grid-row: span 1; }
  .lifestyle-item--wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  .hero-right { height: 70vw; }
  .hero-btns { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .price-wrap { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; }
  .section { padding: 70px 0; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-item--wide { grid-column: span 1; }
}
