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

:root {
  --color-bg: #faf9f7;
  --color-surface: #ffffff;
  --color-primary: #c9a99a;
  --color-primary-dark: #b08878;
  --color-accent: #e8d5ce;
  --color-accent-light: #f5ede9;
  --color-text: #3a3330;
  --color-text-muted: #7a6f6b;
  --color-border: #e8e0dc;
  --color-greige: #d6cfc9;
  --font-serif: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --font-sans: 'Jost', 'Noto Sans JP', sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(58, 51, 48, 0.08);
  --shadow-lg: 0 8px 40px rgba(58, 51, 48, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ============================================
   Typography
   ============================================ */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 520px;
}

/* ============================================
   Layout
   ============================================ */
.container {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 2.2em;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201, 169, 154, 0.45);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 154, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1em 2.8em;
  font-size: 1rem;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
  padding: 0.9rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-shadow: 0 1px 8px rgba(250, 249, 247, 0.9);
  line-height: 1;
}

.nav-logo .salon-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.15em;
  font-family: var(--font-sans);
  font-weight: 500;
}

.nav-logo span {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

.nav-reserve {
  display: flex;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(232, 213, 206, 0.6) 0%,
      rgba(245, 237, 233, 0.3) 50%,
      rgba(214, 207, 201, 0.4) 100%),
    url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(250, 249, 247, 0.82) 0%,
    rgba(245, 237, 233, 0.65) 45%,
    rgba(250, 249, 247, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

.hero-salon-name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #4A3E3D;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(250, 249, 247, 0.8);
}

.hero-salon-name em {
  font-style: italic;
  color: #A68A78;
  font-size: 1.15em;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-primary);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: #4A3E3D;
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(250, 249, 247, 0.7);
}

.hero-title em {
  font-style: italic;
  color: #A68A78;
}

.hero-catch {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: #5C4D4C;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 420px;
  background: rgba(250, 249, 247, 0.6);
  display: inline-block;
  padding: 0.6em 1em;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-greige), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   About
   ============================================ */
.about {
  background: var(--color-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-main:hover img {
  transform: scale(1.03);
}

.about-image-sub {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-bg);
}

.about-image-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  background: var(--color-accent-light);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.about-feature-icon {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.about-feature h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   Menu
   ============================================ */
.menu {
  background: var(--color-bg);
}

.menu-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-header .section-subtitle {
  margin: 0 auto;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.5em 1.5em;
  border-radius: 50px;
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-accent-light);
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 1.4rem;
}

.menu-card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.menu-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.menu-card-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.menu-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
}

.menu-card-price .price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary-dark);
}

.menu-card-price .unit {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.menu-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.menu-cta {
  text-align: center;
}

/* ============================================
   Gallery
   ============================================ */
.gallery {
  background: var(--color-surface);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 0.8rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.5s ease;
}

.gallery-item:first-child img {
  aspect-ratio: unset;
}

.gallery-item:nth-child(4) img {
  aspect-ratio: 2 / 1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 154, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(201, 169, 154, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   Voice (Testimonials)
   ============================================ */
.voice {
  background: var(--color-accent-light);
}

.voice-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.voice-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  position: relative;
}

.voice-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  position: absolute;
  top: 0.8rem;
  left: 1.5rem;
}

.voice-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 0.85rem;
}

.voice-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.voice-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-accent-light);
  flex-shrink: 0;
}

.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.voice-meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ============================================
   Access
   ============================================ */
.access {
  background: var(--color-bg);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-accent-light);
  position: relative;
  box-shadow: var(--shadow);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.access-info {
  padding-top: 0.5rem;
}

.access-info .section-title {
  margin-bottom: 1rem;
}

.access-detail {
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}

.access-detail:last-of-type {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.access-detail-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.access-detail-value {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.6;
}

.access-reserve {
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2.5rem;
}

.access-reserve h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.access-reserve p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================
   CTA Band
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-band-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.cta-band-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-band-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.cta-band .btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-3px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand span {
  color: var(--color-accent);
}

.footer-tagline {
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.footer-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav li a {
  font-size: 0.85rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 249, 247, 0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
}

.mobile-menu nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu nav ul li a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-text);
  font-weight: 300;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .nav-links,
  .nav-reserve {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-sub {
    right: -1rem;
    bottom: -1rem;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }

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

  .access-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > :first-child {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner > :first-child {
    grid-column: span 1;
  }
}

/* ============================================
   Hero text color overrides — Plan B（チャコール）
   ============================================ */
.hero,
[class*="hero"],
.hero h1, .hero h2,
[class*="hero"] h1, [class*="hero"] h2,
[class*="hero"] .title {
  color: #333F48 !important;
}

.hero-title em,
.hero-salon-name em {
  color: #A68A78 !important;
}

.hero p, .hero .description,
[class*="hero"] p, [class*="hero"] .subtitle {
  color: #4A535A !important;
}

.hero h1, .hero h2, .hero p,
[class*="hero"] h1, [class*="hero"] h2, [class*="hero"] p {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.7) !important;
}
}
