:root {
  --primary: #7c5c42;
  --primary-light: #c7b299;
  --primary-dark: #4a3728;
  --accent: #8d7a64;
  --accent-light: #f0e9df;
  --dark: #3d2e1e;
  --dark-soft: #5c4a36;
  --light: #faf8f5;
  --cream: #f2ebe0;
  --white: #ffffff;
  --shadow-soft: 0 10px 40px rgba(61, 46, 30, 0.12);
  --shadow-strong: 0 24px 60px rgba(61, 46, 30, 0.18);
  --max-width: 1200px;
  --radius: 18px;
  --radius-lg: 32px;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(12px);
  color-scheme: light;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: radial-gradient(circle at 15% 20%, rgba(141, 122, 100, 0.08), transparent 30%), radial-gradient(circle at 80% 10%, rgba(199, 178, 153, 0.2), transparent 35%), var(--light);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  margin: 0;
  color: var(--dark);
  letter-spacing: 0.02em;
}

p {
  margin: 0;
  color: var(--dark-soft);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.no-wrap {
  white-space: nowrap;
}

.glass {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.organic-1 { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.organic-2 { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.organic-3 { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(61, 46, 30, 0.1);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
  padding: 10px 24px;
  box-shadow: 0 16px 40px rgba(61, 46, 30, 0.16);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.nav {
  display: flex;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  justify-content: center;
}

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

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(61, 46, 30, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.nav-toggle .bar {
  width: 20px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(61, 46, 30, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-color: rgba(0, 0, 0, 0);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(61, 46, 30, 0.12);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background-image: linear-gradient(160deg, rgba(61, 46, 30, 0.66), rgba(61, 46, 30, 0.5)), url('./images/Hero-desktop.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(166, 124, 82, 0.38), transparent 35%), radial-gradient(circle at 80% 10%, rgba(212, 196, 160, 0.32), transparent 40%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px; /* Reduced from 18px */
}

.hero-subtitle {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.15em;
  font-size: 12px;
  text-transform: none; /* Changed from uppercase for JP SEO */
  color: var(--primary-light);
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

.hero-title {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.25;
  color: var(--white);
}

.hero-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle,
.hero-title,
.hero-description,
.hero .cta-note {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-description,
.hero .cta-note {
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.65),
    0 3px 22px rgba(0, 0, 0, 0.78),
    0 0 2px rgba(0, 0, 0, 0.55);
  font-weight: 400;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 12px 0;
}

.hero-feature {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.hero-feature-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-note {
  max-width: 52ch;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 10px auto 0;
}

.hero-sub-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  backdrop-filter: blur(6px);
}

.hero-sub-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-lg {
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.btn-lg.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 1;
  letter-spacing: 0.14em;
  font-size: 11px;
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  animation: pulse 1.6s ease-in-out infinite;
}

/* Sections */
section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

main section:nth-of-type(odd) {
  background: radial-gradient(circle at 80% 20%, rgba(212, 196, 160, 0.05), transparent 40%);
}

main section:nth-of-type(even) {
  background: radial-gradient(circle at 20% 80%, rgba(166, 124, 82, 0.05), transparent 40%);
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-bg .bg-inner {
  position: absolute;
  width: 70%;
  height: 70%;
  top: -4%;
  left: -8%;
  background: url('./images/access-sign.webp') center/contain no-repeat;
  opacity: 0.22;
  filter: blur(0px);
  animation: float-drift-left 16s ease-in-out infinite alternate;
}

.section-bg .bg-inner.door {
  background-image: url('./images/access-door.webp');
  opacity: 0.12;
  width: 70%;
  height: 70%;
  top: 6%;
  right: -12%;
  left: auto;
  animation-name: float-drift-right;
}

.section-bg .bg-inner.building {
  background-image: url('./images/access-building.webp');
  opacity: 0.18;
  top: 25%;
  right: -10%;
  left: auto;
  animation-name: float-drift-right-soft;
}

.section-bg .bg-inner.machine-removal {
  background-image: url('./images/hair-removal-machine.webp');
  opacity: 0.1;
  width: 50%;
  height: 40%;
  top: 5%;
  left: -10%;
  animation-name: float-drift-left;
}

.section-bg .bg-inner.machine-plasma {
  background-image: url('./images/plasma-machine.webp');
  opacity: 0.1;
  width: 50%;
  height: 40%;
  top: 40%;
  right: -10%;
  left: auto;
  animation-name: float-drift-right;
}

.section-bg .bg-inner.machine-hydro {
  background-image: url('./images/hydro-machine.webp');
  opacity: 0.1;
  width: 50%;
  height: 40%;
  bottom: 5%;
  left: -10%;
  top: auto;
  animation-name: float-drift-left;
}

.floating {
  overflow: hidden;
  position: relative;
}

.floating .container {
  position: relative;
  z-index: 1;
}

.section-ornament {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.section-ornament + .container {
  position: relative;
  z-index: 2;
}

.orb {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 60%), rgba(166, 124, 82, 0.16);
  opacity: 0.24;
  filter: blur(1px);
  animation: orb-drift 18s ease-in-out infinite alternate;
}

.orb-b {
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.12), transparent 60%), rgba(212, 196, 160, 0.14);
  width: 180px;
  height: 180px;
  opacity: 0.2;
  animation: orb-drift-alt 16s ease-in-out infinite alternate;
}

.orb-c {
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.14), transparent 60%), rgba(107, 79, 15, 0.12);
  width: 190px;
  height: 190px;
  opacity: 0.2;
  animation: orb-drift-soft 20s ease-in-out infinite alternate;
}

.orb-d {
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.16), transparent 60%), rgba(212, 196, 160, 0.16);
  width: 180px;
  height: 180px;
  opacity: 0.24;
  animation: orb-drift 14s ease-in-out infinite alternate;
}

.orb-e {
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.18), transparent 60%), rgba(166, 124, 82, 0.18);
  width: 140px;
  height: 140px;
  opacity: 0.24;
  animation: orb-drift-alt 12s ease-in-out infinite alternate;
}

.about-ornament .orb-a { top: 10%; left: 6%; }
.about-ornament .orb-b { bottom: 12%; right: 10%; }

.voice-ornament .orb-a {
  width: 180px;
  height: 180px;
  top: 6%;
  right: 4%;
  left: auto;
  opacity: 0.45;
}
.voice-ornament .orb-c {
  width: 150px;
  height: 150px;
  top: 18%;
  left: -4%;
  opacity: 0.35;
}
.voice-ornament .orb-d {
  width: 120px;
  height: 120px;
  bottom: -6%;
  right: 6%;
  opacity: 0.35;
}
.voice-ornament .orb-e {
  width: 150px;
  height: 150px;
  bottom: 8%;
  left: 16%;
  opacity: 0.45;
}
.voice-ornament .orb,
.voice-ornament .orb-b,
.voice-ornament .orb-c,
.voice-ornament .orb-d,
.voice-ornament .orb-e {
  opacity: 0.35;
}

@keyframes float-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-2%, 1.5%) rotate(-0.8deg); }
  100% { transform: translate(2%, -2.5%) rotate(1.2deg); }
}

@keyframes float-drift-alt {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(1.5%, -1.5%) rotate(0.6deg); }
  100% { transform: translate(-1%, 1.5%) rotate(-0.9deg); }
}

@keyframes float-drift-soft {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-1%, 1%) rotate(-0.5deg); }
  100% { transform: translate(1.5%, -1.5%) rotate(0.8deg); }
}

@keyframes float-drift-left {
  0% { transform: translate(0, 0) rotate(-3deg); }
  50% { transform: translate(-2%, 1.5%) rotate(-1.5deg); }
  100% { transform: translate(2%, -2%) rotate(0.5deg); }
}

@keyframes float-drift-right {
  0% { transform: translate(0, 0) rotate(3deg); }
  50% { transform: translate(2%, -1.5%) rotate(1.5deg); }
  100% { transform: translate(-2%, 2%) rotate(-0.5deg); }
}

@keyframes float-drift-right-soft {
  0% { transform: translate(0, 0) rotate(2deg); }
  50% { transform: translate(1.5%, -1%) rotate(1deg); }
  100% { transform: translate(-1.5%, 1.5%) rotate(0deg); }
}

@keyframes orb-drift {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(-4%, 3%) scale(1.04) rotate(-2deg); }
  100% { transform: translate(3%, -4%) scale(1.02) rotate(2deg); }
}

@keyframes orb-drift-alt {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(3%, -3%) scale(1.03) rotate(1.5deg); }
  100% { transform: translate(-2%, 3%) scale(1.01) rotate(-1deg); }
}

@keyframes orb-drift-soft {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(-3%, 2%) scale(1.02) rotate(-1.2deg); }
  100% { transform: translate(2%, -3%) scale(1.01) rotate(1deg); }
}

@media (max-width: 640px) {
  .section-bg .bg-inner {
    width: 78%;
    height: 78%;
    left: -6%;
    right: auto;
    top: 0%;
    opacity: 0.18;
    animation-duration: 12s;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 54px;
}

.section-subtitle {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--accent-light);
  padding: 8px 14px;
  border-radius: 999px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 32px);
  margin-top: 14px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 18px auto 0;
  opacity: 0.7;
}

/* About */
.about {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}

.about-visual {
  flex: 0 1 520px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
}

.about-visual .card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  position: relative;
  box-shadow: var(--shadow-soft);
}

.card.img1 { position: relative; }
.card.single {
  aspect-ratio: 1238 / 1222;
  width: 100%;
  max-width: 520px;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 16px;
  flex: 0 1 560px;
  position: relative;
  z-index: 2;
}

.label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--primary-dark);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 12px;
}

.about-title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.about-text p + p {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .about {
    flex-direction: column;
    gap: 40px;
  }
  .about-visual {
    flex: 1 1 auto;
    width: 100%;
    max-width: 520px;
  }
  .about-content {
    flex: 1 1 auto;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    padding: 32px;
  }
}

/* First Time */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(61, 46, 30, 0.06);
  display: grid;
  gap: 10px;
}

.card-block h3 {
  font-size: 18px;
  color: var(--dark);
}

.flow {
  margin-top: 28px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(61, 46, 30, 0.08);
}

.flow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.flow-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(61, 46, 30, 0.05);
}

.flow-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.flow-label {
  font-weight: 500;
  margin: 6px 0;
}

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

.cta-center .contact-buttons {
  max-width: 420px;
  margin: 0 auto;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: start;
}

/* Beginners Guide - Linear Path */
.beginners-guide {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}

.beginners-guide::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
}

.guide-item {
  display: flex;
  gap: 40px;
  position: relative;
}

.guide-content {
  flex: 1;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.3s ease;
}

.guide-content:hover {
  transform: translateX(10px);
}

.guide-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 500;
}

.guide-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark);
}

.guide-content p {
  font-size: 15px;
  color: var(--dark-soft);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .beginners-guide::before {
    left: 20px;
  }
  .guide-item {
    gap: 20px;
  }
  .guide-content {
    padding: 32px 24px;
  }
}

/* Feature Showcase - Alternating Editorial */
.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 60px;
}

.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.feature-item.alternate {
  direction: rtl;
}

.feature-item.alternate .feature-text {
  direction: ltr;
}

.feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-strong);
}

.feature-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: sepia(10%) contrast(1.05) brightness(0.95);
}

.feature-item:hover .feature-visual {
  transform: scale(1.05);
}

.feature-text {
  position: relative;
}

.feature-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--primary-light);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -30px;
  margin-left: -10px;
}

.feature-text h3 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--dark);
  position: relative;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-soft);
}

@media (max-width: 1024px) {
  .feature-item {
    gap: 40px;
  }
  .feature-text h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .feature-showcase {
    gap: 80px;
  }
  .feature-item, .feature-item.alternate {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .feature-img {
    height: 300px;
  }
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.menu-card.premium-text {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 4px;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.menu-inner {
  padding: 36px 32px;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(139, 105, 20, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  opacity: 0.8;
}

.menu-card.premium-text h3.menu-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--dark);
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-weight: 500;
}

.menu-desc {
  font-size: 14px;
  color: var(--dark-soft);
  margin-bottom: 24px;
  line-height: 1.6;
}

.price-list {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(61, 46, 30, 0.05);
}

.price-item span {
  font-size: 14px;
  color: var(--dark-soft);
}

.price-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: var(--primary-dark);
}

.menu-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--primary);
  opacity: 0.8;
  font-style: italic;
}

.menu-card.premium-text:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(139, 105, 20, 0.3);
}

.menu-card.premium-text:hover .menu-inner {
  border-color: rgba(139, 105, 20, 0.2);
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .menu-inner {
    padding: 32px 24px;
  }
}

.menu-title {
  font-size: 18px;
  font-weight: 500;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(61, 46, 30, 0.1);
  font-size: 14px;
}

.price-row:last-child {
  border-bottom: none;
}

.note {
  font-size: 13px;
  color: var(--dark-soft);
  background: var(--cream);
  border-radius: 12px;
  padding: 10px;
}

/* Voice */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.voice-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 20px;
  position: relative;
  transition: all 0.4s ease;
}

.voice-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-strong);
}

.voice-card:nth-child(1) { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.voice-card:nth-child(2) { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; margin-top: -30px; }
.voice-card:nth-child(3) { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }

@media (max-width: 768px) {
  .voice-card {
    border-radius: var(--radius-lg) !important;
    margin-top: 0 !important;
  }
}

.voice-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.voice-highlight {
  padding: 12px;
  background: var(--accent-light);
  border-radius: 12px;
  color: var(--dark);
  font-weight: 500;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.faq-q {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
}

.faq-q span:first-child {
  font-size: 13px;
  color: var(--primary);
  margin-right: 12px;
  font-family: 'Montserrat', sans-serif;
}

.icon-toggle {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"] .icon-toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  /* Ultra-smooth easing: initially fast, then gracefully slow */
  transition: max-height 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
              padding 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(255, 255, 255, 0.5); /* Clearer distinction */
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.faq-q[aria-expanded="true"] + .faq-a {
  max-height: 500px;
  padding: 16px 24px; /* Reduced vertical padding */
}

.faq-a-inner {
  padding: 20px 24px; /* Compact vertical spacing */
  background: rgba(255, 255, 255, 0.4);
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.01);
  position: relative;
}

.faq-a p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--dark-soft);
  margin: 0 !important; /* Ensure no extra space at the bottom */
  padding: 0;
  /* Subtle fade in for the content itself */
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.5s ease 0.1s;
}

.faq-q[aria-expanded="true"] + .faq-a p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .faq-q[aria-expanded="true"] + .faq-a {
    padding: 8px 16px 20px;
  }
  .faq-a-inner {
    padding: 20px 16px;
  }
}
/* Access */
.access {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(61, 46, 30, 0.08);
  display: grid;
  gap: 14px;
  height: fit-content;
}

.info-row {
  display: grid;
  gap: 6px;
}

.info-label {
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif;
}

.info-text {
  line-height: 1.6;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.contact-buttons .btn {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 40px;
}

.footer-top {
  text-align: center;
  margin-bottom: 32px;
  display: grid;
  gap: 12px;
}

.footer-top-title {
  font-size: 18px;
}

.footer-top-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-top .btn {
  background: var(--white);
  color: var(--dark);
  border: none;
  box-shadow: var(--shadow-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: start;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.footer-note {
  margin-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), 
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Grid column control */
@media (min-width: 641px) {
  .cards,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .cards,
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .flow-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Misc */
@keyframes pulse {
  0% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
  100% { opacity: 0.2; transform: translateY(0); }
}

@media (min-width: 640px) {
  section {
    padding: 72px 0;
  }
  .hero {
    padding: 100px 0 120px;
  }
}

@media (min-width: 1024px) {
  .header {
    flex-wrap: nowrap;
    gap: 24px;
  }
  .nav {
    display: flex;
    position: relative;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    transform: none;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    padding: 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 24px;
    z-index: 1;
  }
  .nav a {
    font-size: 14px;
    padding: 0;
    border-bottom: none;
    opacity: 1;
    transform: none;
  }
  .nav-toggle {
    display: none;
  }
  .access {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
  .info-card {
    padding: 40px;
  }
}

@media (max-width: 1024px) {
  /* Hide desktop horizontal nav if necessary, or let it transform */
  .nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 90;
    gap: 24px;
    padding: 100px 40px 40px;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.03);
  }

  .nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav a {
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
    text-align: left;
    padding: 12px 0;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    width: 100%;
  }

  .nav.open a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav.open a:nth-child(1) { transition-delay: 0.1s; }
  .nav.open a:nth-child(2) { transition-delay: 0.2s; }
  .nav.open a:nth-child(3) { transition-delay: 0.3s; }

  .nav-toggle {
    display: flex;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 46, 30, 0.15);
    backdrop-filter: blur(2px);
    z-index: 80;
  }

  .nav-overlay.visible {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  section {
    padding: 56px 0;
  }
  .header-cta {
    flex: 1;
    justify-content: flex-end;
    gap: 8px;
  }
  .header .btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  .hero {
    padding: 108px 0 124px;
    background: linear-gradient(160deg, rgba(61, 46, 30, 0.66), rgba(61, 46, 30, 0.5)), url('./images/Hero-mobile2.webp') center/cover;
    background-position: 58% center;
  }
  .hero-subtitle {
    letter-spacing: 0.12em;
  }
  .hero-title {
    line-height: 1.3;
  }
  .hero-description {
    line-height: 1.7;
  }
  .cards,
  .feature-grid,
  .menu-grid,
  .voice-grid {
    gap: 20px;
  }
  .card-block,
  .feature-card,
  .menu-card,
  .voice-card {
    padding: 20px;
  }
  .btn {
    padding: 12px 18px;
  }
  .btn-lg {
    padding: 15px 26px;
  }
  .map {
    min-height: 360px;
  }
}

.nav-mobile-cta {
  display: none;
  gap: 12px;
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 360px) {
  .logo {
    font-size: 22px; /* Slight reduction */
  }
  .header-cta .btn.cta-hide-mobile {
    display: none;
  }
  .nav-mobile-cta {
    display: flex;
    flex-wrap: wrap;
  }
  .nav-mobile-cta .btn {
    flex: 1;
    min-width: 100px;
    font-size: 12px;
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .scroll-indicator,
  .scroll-line {
    display: none !important;
  }
}

/* Process (Timeline) */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 40px;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
}

.process-step {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  background: var(--bg-light);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 8px var(--bg-light); 
  /* box-shadow creates a "gap" effect around the line */
}

.step-content {
  width: 42%;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover .step-content {
  transform: translateY(-5px);
}

/* Connect the dot to the card */
.step-content::before {
  content: '';
  position: absolute;
  top: 24px;
  width: 40px; 
  height: 1px;
  background: var(--primary-light);
  opacity: 0.5;
}

.process-step:nth-child(odd) .step-content {
  margin-right: auto;
  text-align: left;
}

.process-step:nth-child(odd) .step-content::before {
  right: -41px;
}

.process-step:nth-child(even) .step-content {
  margin-left: auto;
  text-align: left;
}

.process-step:nth-child(even) .step-content::before {
  left: -41px;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}

.step-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark-soft);
}

.process-cta {
  text-align: center;
  margin-top: 60px;
}

.process-cta p {
  margin-bottom: 24px;
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
}

@media (max-width: 768px) {
  .process-timeline {
    padding-left: 20px;
    margin-left: 0;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .process-step {
    flex-direction: column !important;
    margin-bottom: 40px;
    padding-left: 40px; /* Space for the line/number */
  }
  
  .step-number {
    left: 20px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    font-size: 14px;
    margin-top: 0;
  }
  
  .step-content {
    width: 100%;
    margin: 0 !important;
    text-align: left !important;
    margin-top: 10px !important;
  }
  
  .step-content::before {
    display: none; /* Hide connector line on mobile */
  }
}

/* =========================================
   IMMERSIVE UX UPDATES
   ========================================= */

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* =========================================
   MODERN HERO SECTION (Broken Grid)
   ========================================= */

.hero-modern {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* Header space */
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 25vw;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  letter-spacing: -0.05em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  width: 90%;
  max-width: 1400px;
  height: 80%;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Visual Side (Image) */
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-wrapper {
  position: relative;
  width: 80%;
  height: 90%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transform: rotate(-2deg); /* Broken grid nuance */
  transition: transform 0.5s ease;
}

.img-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

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

.desktop-only { display: block; }
.mobile-only { display: none; }

/* Text Content Side */
.hero-text-content {
  padding-left: 60px;
  position: relative;
  z-index: 3;
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  display: block;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  color: var(--dark);
  margin-bottom: 32px;
}

.hero-headline .line {
  display: block;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.hero-headline .line:nth-child(1) { animation-delay: 0.2s; }
.hero-headline .line:nth-child(2) { animation-delay: 0.4s; }
.hero-headline .line:nth-child(3) { animation-delay: 0.6s; }

.hero-subtext {
  font-size: 16px;
  line-height: 2;
  color: var(--dark-soft);
  margin-bottom: 40px;
  max-width: 400px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.8s;
}

.hero-actions {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
}

.scroll-indicator span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: translateY(-100%);
  animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-modern {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 40px;
  }

  .hero-visual {
    order: 2; /* Image below text on tablet */
    height: 400px;
  }
  
  .img-wrapper {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
  }

  .hero-text-content {
    padding-left: 0;
    text-align: center;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  
  .hero-headline {
    font-size: 3rem; /* Still big */
  }
  
  .hero-bg-text {
    display: none; /* Hide Giant text on mobile if distracting */
  }
}

/* Adjust spacing between Process and Voice sections */
#process {
  padding-bottom: 20px;
}

#process .process-timeline {
  margin-bottom: 0;
}

#voice {
  padding-top: 40px;
}
