/* ============================================
   HENNA KYOTO — style.css
   Mobile-first, organic luxury aesthetic
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --ivory:      #f6f2ea;
  --ivory-dark: #ede8dc;
  --green:      #2d4a3e;
  --green-mid:  #3d6355;
  --green-light:#eef2ef;
  --gold:       #b8924a;
  --gold-light: #d4aa6a;
  --terra:      #8c4a2f;
  --charcoal:   #2a2a2a;
  --mid:        #5a5a5a;
  --light:      #8a8a8a;
  --white:      #ffffff;
  --border:     rgba(45,74,62,0.15);

  --font-serif: 'Shippori Mincho', 'Times New Roman', serif;
  --font-en:    'Cormorant Garamond', Georgia, serif;
  --font-body:  'Noto Sans JP', sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.4;
  font-weight: 600;
}

.en-label {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--green);
  margin-bottom: 0.5rem;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
  font-family: var(--font-en);
}

.section-subtitle {
  color: var(--mid);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* No blue phone links */
a[href^="tel"] {
  color: inherit !important;
  text-decoration: none !important;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(246,242,234,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

#header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.hamburger:hover { background: var(--ivory-dark); }

.hamburger span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 75%; }
.hamburger span:nth-child(3) { width: 100%; }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown nav */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--ivory);
  border-bottom: 2px solid var(--green);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 1rem 0;
  transform-origin: top;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { background: var(--green-light); color: var(--green); }

.nav-mobile .nav-line-btn {
  display: block;
  margin: 1rem 1.2rem 0.5rem;
  background: #06c755;
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Desktop nav (hidden on mobile) */
.nav-desktop {
  display: none;
}

/* ============================================
   HERO / VIDEO SECTION
   ============================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green);
  padding-top: 60px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 */
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,38,30,0.72) 0%,
    rgba(45,74,62,0.55) 50%,
    rgba(20,38,30,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem 1.5rem;
  animation: fadeUp 1.2s ease both;
}

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

.hero-en {
  font-family: var(--font-en);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: white;
}

.hero-title span {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #06c755;
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(6,199,85,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,199,85,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.hero-stats {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  z-index: 2;
  color: white;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
}

.hero-stat span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ============================================
   SECTIONS — General
   ============================================ */
section {
  padding: 4.5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  background: var(--white);
}

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

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ivory-dark);
  position: relative;
}

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

.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-light), var(--ivory-dark));
  color: var(--green-mid);
  font-size: 0.8rem;
  gap: 0.5rem;
  letter-spacing: 0.1em;
}

.img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

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

.badge {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  text-align: center;
}

.badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green);
  line-height: 1.2;
}

.badge span {
  font-size: 0.75rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ============================================
   WHY WAKAKUSA
   ============================================ */
#why {
  background: var(--green);
  color: white;
}

#why .section-title { color: white; }
#why .section-subtitle { color: rgba(255,255,255,0.75); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: background 0.2s;
}

.why-card:hover { background: rgba(255,255,255,0.13); }

.why-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  min-width: 2.5rem;
}

.why-card h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

/* ============================================
   HENNA SECTION
   ============================================ */
#henna {
  background: var(--ivory);
}

.henna-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.henna-text p {
  color: var(--mid);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.9;
}

.henna-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.henna-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.henna-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.henna-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ivory-dark);
  position: relative;
}

/* Quality badges */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.quality-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.5;
  position: relative;
  padding-left: 1.2rem;
}

.quality-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 3px 0 0 3px;
}

/* ============================================
   HAIR RESETTER SECTION (NEW)
   ============================================ */
#hair-resetter {
  background: var(--ivory-dark);
}

.resetter-intro {
  background: var(--green);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.resetter-intro h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.8rem;
}

.resetter-intro p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
}

.resetter-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.resetter-point {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.resetter-point h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.point-tag {
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-family: var(--font-body);
  font-weight: 500;
}

.resetter-point p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.85;
}

.resetter-benefits {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.resetter-benefits h3 {
  font-family: var(--font-serif);
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.benefit-tag {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.83rem;
}

.resetter-price {
  background: var(--green);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.resetter-price h4 {
  color: white;
  font-size: 1rem;
}

.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}

.price-label {
  font-size: 0.75rem;
  opacity: 0.75;
}

.price-amount {
  font-family: var(--font-en);
  font-size: 1.5rem;
  color: var(--gold-light);
  font-weight: 300;
}

/* ============================================
   MENU SECTION
   ============================================ */
#menu {
  background: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.menu-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ivory);
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.menu-card.featured {
  border-color: var(--gold);
  background: var(--white);
}

.menu-card-head {
  background: var(--green);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card.featured .menu-card-head {
  background: linear-gradient(90deg, var(--green), var(--green-mid));
}

.menu-card-head h3 {
  color: white;
  font-size: 1rem;
}

.menu-badge {
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-family: var(--font-body);
}

.menu-card-body {
  padding: 1.3rem 1.5rem;
}

.menu-en { 
  font-family: var(--font-en); 
  font-size: 0.82rem; 
  color: var(--light); 
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  display: block;
}

.menu-card-body p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.menu-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 600;
}

.menu-price span { font-size: 0.85rem; font-weight: 400; color: var(--mid); }

/* Perm & Cut sub-items */
.menu-subitems {
  margin-top: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
}

.menu-subitem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  border-bottom: 1px dashed var(--border);
}

.menu-subitem:last-child { border-bottom: none; }

.menu-subitem-price {
  font-family: var(--font-en);
  color: var(--green);
  font-weight: 500;
}

/* ============================================
   LOYALTY PROGRAM (replaces new discount)
   ============================================ */
#loyalty {
  background: linear-gradient(135deg, var(--green) 0%, #1a3028 100%);
  color: white;
  padding: 4rem 0;
}

#loyalty .section-title { color: white; }
#loyalty .section-subtitle { color: rgba(255,255,255,0.75); }

.loyalty-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.loyalty-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  transition: background 0.2s;
}

.loyalty-step:hover { background: rgba(255,255,255,0.12); }

.loyalty-num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  min-width: 3rem;
  text-align: center;
}

.loyalty-step h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.loyalty-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.loyalty-stamp {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: center;
}

.loyalty-stamp h4 {
  color: var(--gold-light);
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.stamps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.stamp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.stamp.filled { background: var(--gold); border-color: var(--gold); }

.loyalty-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   HEALING / SPIRITUAL SECTION (NEW)
   ============================================ */
#healing {
  background: var(--ivory);
}

.healing-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.healing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.healing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.25s;
}

.healing-card:hover { box-shadow: var(--shadow); }

.healing-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.healing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.healing-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.85;
}

.healing-note {
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  color: var(--green);
  margin-top: 2rem;
  text-align: center;
}

/* ============================================
   GALLERY SECTION (NEW)
   ============================================ */
#gallery {
  background: var(--charcoal);
  padding: 4rem 0;
}

#gallery .section-title { color: white; }
#gallery .en-label { color: var(--gold-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: #3a3a3a;
  position: relative;
  cursor: pointer;
  transition: opacity 0.2s;
}

.gallery-item:hover { opacity: 0.85; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a4a44, #2a3a34);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  gap: 0.4rem;
}

.gallery-note {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  margin-top: 1.2rem;
}

/* ============================================
   FAQ & RESERVE LINKS
   ============================================ */
#links {
  background: var(--white);
  padding: 4rem 0;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.link-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--green);
}

.link-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.link-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.link-card p {
  font-size: 0.85rem;
  color: var(--mid);
}

.link-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
#reviews {
  background: var(--ivory-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.2rem;
}

.review-text::before {
  content: '"';
  position: absolute;
  left: 0; top: -0.2rem;
  font-family: var(--font-en);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.reviewer {
  font-size: 0.82rem;
  color: var(--light);
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
  font-weight: 500;
}

.rating-summary {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.rating-number {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
}

.rating-label {
  font-size: 0.8rem;
  color: var(--mid);
  margin-top: 0.3rem;
}

/* ============================================
   INSTAGRAM SECTION (NEW)
   ============================================ */
#instagram {
  background: var(--white);
  padding: 4rem 0;
  text-align: center;
}

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

.insta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.insta-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.insta-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.insta-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.insta-card p {
  font-size: 0.8rem;
  color: var(--light);
}

.insta-embed-note {
  font-size: 0.8rem;
  color: var(--light);
  margin-top: 1.5rem;
}

/* ============================================
   ACCESS SECTION
   ============================================ */
#access {
  background: var(--ivory-dark);
}

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

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid var(--border);
}

.info-table th, .info-table td {
  padding: 0.9rem 0;
  font-size: 0.9rem;
  vertical-align: top;
  text-align: left;
}

.info-table th {
  width: 6rem;
  color: var(--green);
  font-family: var(--font-serif);
  font-weight: 600;
  white-space: nowrap;
  padding-right: 1rem;
}

.info-table td {
  color: var(--mid);
  line-height: 1.8;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  background: var(--ivory);
  position: relative;
}

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

/* LINE contact section */
.line-section {
  background: var(--green);
  padding: 3.5rem 0;
  text-align: center;
  color: white;
}

.line-section h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: white;
  margin-bottom: 0.7rem;
}

.line-section p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.8rem;
}

.line-tel {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.tel-number {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: white;
  margin: 0.3rem 0;
}

/* QR code — hidden on mobile, shown on desktop */
.qr-section { display: none; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #1a2820;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2.5rem 1.2rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.3rem;
}

.footer-sub {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.78rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
}

/* ============================================
   SCROLL-TO-TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TABLET & DESKTOP STYLES
   ============================================ */
@media (min-width: 600px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .healing-grid { grid-template-columns: 1fr 1fr; }
  .resetter-points { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .links-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: row; justify-content: center; }
  .loyalty-steps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  html { font-size: 18px; }

  /* Show desktop nav, hide hamburger */
  .hamburger { display: none; }
  .nav-mobile { display: none !important; }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .nav-desktop a {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--charcoal);
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }

  .nav-desktop a:hover { background: var(--green-light); color: var(--green); }

  .nav-line-btn-desktop {
    background: #06c755;
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px !important;
    font-family: var(--font-body) !important;
    font-weight: 600;
    margin-left: 0.5rem;
  }

  .nav-line-btn-desktop:hover { background: #05b04a !important; }

  /* About grid */
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }

  /* Henna content */
  .henna-content { grid-template-columns: 1fr 1fr; align-items: start; }

  /* Access grid */
  .access-grid { grid-template-columns: 1fr 1fr; }

  /* Why grid */
  .why-grid { grid-template-columns: repeat(3, 1fr); }

  /* Healing grid */
  .healing-grid { grid-template-columns: repeat(3, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }

  /* QR visible on desktop */
  .qr-section { display: block; }

  /* Menu */
  .menu-grid { grid-template-columns: repeat(3, 1fr); }

  /* Loyalty */
  .loyalty-steps { grid-template-columns: repeat(4, 1fr); }

  /* Resetter */
  .resetter-points { grid-template-columns: repeat(3, 1fr); }

  /* Reviews */
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

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

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }
