/* ============================================
   hair salon BLOOM - Premium Salon Site
   Soft, Feminine, Warm Design
   ============================================ */

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

:root {
  --primary: #9B7068;
  --accent: #D4A5A5;
  --secondary: #A8B5A2;
  --bg: #FDF6F4;
  --surface: #fff;
  --surface2: #FFF5F2;
  --text: #4A3833;
  --muted: #9E8A84;
  --font-en: 'Quicksand', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --radius: 24px;
}

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

body {
  font-family: var(--font-jp);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ── Petal Canvas ── */
#petal-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99990;
}

/* ── Cursor Trail ── */
.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 99989;
  opacity: 0;
  transition: opacity .3s;
}

/* ── Sample Banner ── */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(155, 112, 104, .92);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 16px;
  z-index: 99999;
  letter-spacing: .5px;
  backdrop-filter: blur(4px);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 14px 0;
  transition: all .4s ease;
}

.header.scrolled {
  background: rgba(253, 246, 244, .92);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(155, 112, 104, .08);
  padding: 10px 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .9rem;
}

.logo-text {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-family: var(--font-jp);
  font-size: .6rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: .82rem;
  font-weight: 400;
  color: var(--muted);
  transition: color .3s;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .3s;
}

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

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--primary)) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 500 !important;
}

.nav-cta::after {
  display: none !important;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: .3s;
  display: block;
  border-radius: 2px;
}

@media (max-width: 840px) {
  .hamburger {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9999;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
  }
  .nav a {
    font-size: 1.1rem;
  }
  .nav a::after {
    display: none;
  }
  .header-inner {
    padding: 0 20px;
  }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(253, 246, 244, .15) 0%,
    rgba(155, 112, 104, .4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-label {
  font-family: var(--font-en);
  font-size: .75rem;
  color: #fff;
  letter-spacing: 5px;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
  opacity: .9;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .85);
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 999px;
  transition: all .4s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-jp);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 165, 165, .35);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .15);
}

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

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

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Wave Divider ── */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider.flip {
  transform: rotate(180deg);
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--surface);
  padding: 52px 0;
  position: relative;
}

.trust-items {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.trust-item {
  text-align: center;
}

.trust-num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
}

.trust-unit {
  font-size: .82rem;
  color: var(--primary);
}

.trust-label {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 1px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(155, 112, 104, .15);
  align-self: center;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--surface);
}

.section-blush {
  background: var(--surface2);
}

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

.section-label {
  font-family: var(--font-en);
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: 5px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text);
}

.section-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-sub {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 18px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
  font-weight: 300;
}

/* ── Color Bloom Animation ── */
.bloom-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease, box-shadow .8s ease;
}

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

/* ── Soft Bounce Cards ── */
.bounce-card {
  opacity: 0;
  transform: translateY(30px) scale(.97);
  transition: opacity .6s ease, transform .8s cubic-bezier(.34, 1.56, .64, 1);
}

.bounce-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Organic Blob Background ── */
.blob-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
  animation: blobFloat 12s ease-in-out infinite;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -80px;
  left: -80px;
  animation: blobFloat 15s ease-in-out infinite reverse;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobFloat 18s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(.95); }
}

/* ── Values Grid ── */
.values-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.value-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--surface);
  border: 1px solid rgba(212, 165, 165, .15);
  border-radius: var(--radius);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  opacity: 0;
  transition: opacity .4s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212, 165, 165, .2);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}

.value-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

@media (max-width: 840px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Service Cards ── */
.service-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(212, 165, 165, .1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all .4s ease;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: 0 0 0 0 rgba(212, 165, 165, 0);
  transition: box-shadow .5s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card:hover::after {
  box-shadow: 0 20px 50px rgba(212, 165, 165, .25);
}

.service-emoji {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.service-name {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.service-price {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-price small {
  font-size: .7rem;
  font-weight: 400;
  color: var(--muted);
}

.service-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

.service-badge {
  display: inline-block;
  background: var(--surface2);
  color: var(--primary);
  font-size: .7rem;
  padding: 4px 14px;
  border-radius: 999px;
  margin-top: 12px;
  font-weight: 400;
}

@media (max-width: 840px) {
  .service-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    max-width: 400px;
  }
}

/* ── Flow / First Visit ── */
.flow-timeline {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 70px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--secondary));
  border-radius: 2px;
}

.flow-step {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
  align-items: flex-start;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(212, 165, 165, .3);
}

.flow-content {
  padding-top: 6px;
}

.flow-content h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.flow-content p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

@media (max-width: 768px) {
  .flow-timeline {
    padding: 0 20px;
  }
  .flow-timeline::before {
    left: 40px;
  }
}

/* ── Testimonials ── */
.testimonial-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(212, 165, 165, .1);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity .4s;
}

.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(212, 165, 165, .15);
  transform: translateY(-4px);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-stars {
  color: #E8B86D;
  font-size: .85rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: .88rem;
  line-height: 2;
  margin-bottom: 20px;
  color: var(--text);
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(212, 165, 165, .15);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--primary);
  font-weight: 500;
}

.testimonial-info strong {
  display: block;
  font-size: .85rem;
  font-weight: 500;
}

.testimonial-info span {
  font-size: .75rem;
  color: var(--muted);
}

@media (max-width: 840px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ── Owner Section ── */
.owner-block {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.owner-visual {
  position: relative;
}

.owner-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--surface2), #f0e0dc);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.owner-img-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(253, 246, 244, .3));
}

.owner-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(155, 112, 104, .12);
  text-align: center;
}

.owner-badge-num {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.owner-badge-label {
  font-size: .65rem;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.owner-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.owner-content .owner-role {
  font-size: .82rem;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.owner-msg {
  font-size: .92rem;
  line-height: 2.2;
  font-weight: 300;
  margin-bottom: 24px;
  color: var(--text);
}

.owner-sign {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 768px) {
  .owner-block {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 32px;
  }
}

/* ── Salon Info ── */
.salon-info-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.salon-info-table {
  width: 100%;
}

.info-row {
  display: flex;
  border-bottom: 1px solid rgba(212, 165, 165, .15);
  padding: 14px 0;
}

.info-label {
  min-width: 110px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
}

.info-value {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 300;
}

.salon-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface2), #e8e0dc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--muted);
  border: 1px solid rgba(212, 165, 165, .15);
  overflow: hidden;
}

.salon-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .salon-info-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 32px;
  }
}

/* ── FAQ ── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 165, 165, .15);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-q span:first-child {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--accent);
  font-size: .95rem;
  min-width: 28px;
}

.faq-q h3 {
  flex: 1;
  font-size: .92rem;
  font-weight: 500;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform .3s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  display: flex;
  gap: 16px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 0 20px 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a span {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--secondary);
  font-size: .95rem;
  min-width: 28px;
}

.faq-a p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

/* ── Contact / CTA ── */
.cta-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface2), #f5e8e4);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}

.cta-section p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 32px;
  font-weight: 300;
}

.cta-tel {
  margin-bottom: 16px;
}

.cta-tel a {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: opacity .3s;
}

.cta-tel a:hover {
  opacity: .7;
}

.cta-hours {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ── Footer ── */
.footer {
  background: #3D2B25;
  color: rgba(255,255,255,.5);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: .78rem;
  line-height: 1.9;
  font-weight: 300;
}

.footer h4 {
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: rgba(255,255,255,.8);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

.footer li a {
  font-size: .78rem;
  transition: color .3s;
  font-weight: 300;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  font-size: .72rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .footer-bottom {
    padding: 20px 20px 0;
  }
}

/* ── Midpage CTA Banner ── */
.mid-cta {
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mid-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 165, 165, .15);
  box-shadow: 0 12px 48px rgba(212, 165, 165, .12);
}

.mid-cta h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.mid-cta p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 300;
}

/* ── Photo Break Parallax ── */
.photo-break-quote {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.photo-break-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253,246,244,.85), rgba(255,245,242,.85));
}

.photo-break-quote blockquote {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 2;
  letter-spacing: 1px;
}

.photo-break-quote cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 16px;
  font-size: .82rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 300;
}

/* ── Responsive Utilities ── */
@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 16px 60px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }
}
