/* ============================================================
   AROHA SALON — styles.css
   ============================================================ */

:root {
  --white:        #FFFFFF;
  --charcoal:     #1A1A1A;
  --soft-grey:    #2F2F2F;
  --silver:       #C0C0C0;
  --bg-grey:      #F6F5F3;
  --bg-dark:      #141414;
  --accent:       #8B6914;
  --accent-light: #C9A96E;
  --text-main:    #1A1A1A;
  --text-muted:   #595959;
  --text-light:   #FFFFFF;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', 'Helvetica Neue', sans-serif;
  --spacing-lg:   4rem;
  --spacing-xl:   7rem;
  --radius-sm:    4px;
  --radius-md:    8px;
  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:        1200px;
  --max-w-narrow: 720px;
  --header-h:     90px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--text-main); background: var(--white); line-height: 1.7; font-weight: 300; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
ul { list-style: none; }
address { font-style: normal; }

.skip-link { position: absolute; top: -100%; left: 1rem; z-index: 9999; background: var(--accent); color: var(--white); font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; padding: 0.75rem 1.5rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm); text-transform: uppercase; white-space: nowrap; }
.skip-link:focus { top: 0; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h2 em { font-style: italic; color: var(--accent); }
p { line-height: 1.75; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: var(--max-w-narrow); }
.section-pad { padding: var(--spacing-lg) 0; }
@media (min-width: 768px) { .container { padding: 0 2rem; } .section-pad { padding: var(--spacing-xl) 0; } }
.section-dark { background: var(--bg-dark); }
.section-grey { background: var(--bg-grey); }
.text-light { color: var(--text-light); }
.label-light { color: var(--silver) !important; }

.label-text { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.75rem; }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.9rem 2rem; border: 1px solid transparent; cursor: pointer; transition: all var(--transition); min-height: 48px; white-space: nowrap; }
.btn-solid { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); }
.btn-large { padding: 1.1rem 2.5rem; font-size: 0.8rem; }

.link-arrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: inline-block; margin-top: 0.75rem; transition: transform var(--transition); }
.link-arrow:hover { transform: translateX(4px); }
.section-dark .link-arrow, .service-card .link-arrow { color: var(--accent-light); }

/* ── HEADER ── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--header-h); background: #ffffff; border-bottom: 3px solid #000000; transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.18); }
.header-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0; }

.logo { display: flex; flex-direction: column; align-items: center; line-height: 1; gap: 4px; text-decoration: none; }
.logo-main { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.7rem; font-weight: 500; letter-spacing: 0.35em; color: #000000; text-transform: uppercase; display: block; }
.logo-sub { font-family: 'Jost', sans-serif; font-size: 0.55rem; letter-spacing: 0.38em; text-transform: uppercase; color: #8B6914; font-weight: 600; display: block; }

@media (min-width: 1024px) {
  .header-inner { padding: 0 2rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; }
  .logo-main { font-size: 2rem; }
  .logo-sub { font-size: 0.58rem; }
}

.main-nav.desktop-nav { justify-content: flex-end; }

.header-book-now { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.75rem 1.5rem; background: var(--accent); color: var(--white); border: 1px solid var(--accent); white-space: nowrap; transition: all var(--transition); min-height: 44px; display: none; align-items: center; margin-left: 2rem; }
.header-book-now:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 0; align-items: center; }
.main-nav a { font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #000000; font-weight: 500; padding: 0.6rem 1.1rem; display: block; position: relative; transition: color 0.2s ease; }
.main-nav a::after { content: ''; position: absolute; bottom: 2px; left: 1.1rem; right: 1.1rem; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1); }
.main-nav a:hover { color: #000000; }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav ul li:last-child a { padding-right: 0.5rem; }
.header-cta { display: none; }
.nav-drawer-cta.btn-solid { background: var(--accent); border-color: var(--accent); color: var(--white); padding: 0.75rem 1.4rem; font-size: 0.7rem; letter-spacing: 0.14em; }
.nav-drawer-cta.btn-solid:hover { background: var(--charcoal); border-color: var(--charcoal); }

.nav-backdrop { display: none; position: fixed; inset: 0; z-index: 850; background: rgba(0,0,0,0.4); opacity: 0; transition: opacity var(--transition); }
.nav-backdrop.visible { display: block; opacity: 1; }

.nav-toggle { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 6px; padding: 10px; min-width: 52px; min-height: 52px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #000000; transition: all var(--transition); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-drawer-cta { display: none; }
.main-nav.open { display: block; position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 900; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08); padding: 1.5rem 1.5rem 2rem; max-height: calc(100svh - var(--header-h)); overflow-y: auto; }
.main-nav.open ul { flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
.main-nav.open a { display: block; padding: 0.9rem 0; font-size: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.07); color: var(--text-muted); background: transparent; }
.main-nav.open a:hover { color: var(--charcoal); background: transparent; }
.main-nav.open .nav-drawer-cta { display: inline-flex; width: 100%; justify-content: center; margin-top: 0.5rem; }

@media (min-width: 1024px) {
  .main-nav { display: flex !important; align-items: center; justify-content: flex-end; }
  .main-nav ul { flex-direction: row; justify-content: flex-end; }
  .nav-drawer-cta { display: none !important; }
  .header-cta { display: none; }
  .header-book-now { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-backdrop { display: none !important; }
}

/* ── HERO ── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transform: scale(1.04); animation: heroZoom 10s ease forwards; filter: grayscale(100%) brightness(0.75); }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.72) 40%, rgba(8,8,8,0.35) 70%, rgba(8,8,8,0.12) 100%), linear-gradient(to bottom, rgba(8,8,8,0.5) 0%, transparent 20%, transparent 65%, rgba(8,8,8,0.65) 100%); }
.hero-content { position: relative; z-index: 1; padding: calc(var(--header-h) + 5rem) 1.25rem 5rem; max-width: 620px; animation: fadeUp 1s ease 0.3s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent-light); font-weight: 500; margin-bottom: 1rem; }
.hero-trust-badge { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 0.4rem 0.85rem; border-radius: 50px; margin-bottom: 1.25rem; backdrop-filter: blur(6px); }
.hero-trust-badge svg { color: var(--accent-light); flex-shrink: 0; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: var(--white); margin-bottom: 1.25rem; line-height: 1.1; letter-spacing: 0.01em; text-shadow: 0 2px 32px rgba(0,0,0,0.6); }
.hero-h1-sub { display: block; font-size: clamp(1.5rem, 3.5vw, 2.6rem); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.85); letter-spacing: -0.01em; }
.hero-tagline { margin-bottom: 1.25rem; font-family: var(--font-serif); font-size: clamp(1rem, 1.6vw, 1.15rem); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.82); border-left: 2px solid var(--accent-light); padding-left: 1rem; max-width: 440px; line-height: 1.65; }
.hero-tagline em { color: var(--accent-light); }
.hero-sub { color: rgba(255,255,255,0.72); font-size: 0.9rem; font-weight: 300; max-width: 420px; margin-bottom: 0.9rem; }
.hero-trust-hook { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 400; margin-bottom: 1.75rem; }
.hero-access-notes { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; }
.hero-transport-note { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.hero-transport-note svg { flex-shrink: 0; opacity: 0.7; }
.btn-ghost-map { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.28); backdrop-filter: blur(6px); }
.btn-ghost-map:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }
.hero-map-btn { padding: 0.9rem 1.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1; }
.hero-scroll-hint span { display: block; width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5)); animation: scrollLine 1.8s ease infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (min-width: 768px) { .hero-content { padding-left: 2rem; } }
@media (min-width: 1024px) { .hero-content { padding-left: calc((100vw - var(--max-w)) / 2 + 2rem); max-width: 700px; } }

/* ── Hero h1 structure ── */
.hero-h1-welcome {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.hero-h1-location {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  border-left: 1.5px solid var(--accent-light);
  padding-left: 16px;
  margin-top: 18px;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

/* ── INTRO ── */
.intro { text-align: center; }
.intro .container-narrow { margin: 0 auto; }
.intro h2 { margin-bottom: 1.5rem; }
.intro-body { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto 1rem; }
.intro-trust-hook { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 500; }

/* ── SERVICES ── */
.services h2 { margin-bottom: 2.5rem; }
.section-dark h2, .section-dark .label-text { color: var(--text-light); }
.services-grid { display: grid; gap: 1.5px; background: rgba(255,255,255,0.06); }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card { background: var(--soft-grey); overflow: hidden; transition: background var(--transition); position: relative; cursor: pointer; }
.service-card:hover { background: #383838; }
.service-img-wrap { overflow: hidden; height: 260px; }
@media (min-width: 768px) { .service-img-wrap { height: 340px; } }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.card-link { display: block; text-decoration: none; color: inherit; }
.service-body { padding: 1.75rem; }
.service-body h3 { color: var(--white); margin-bottom: 0.75rem; }
.service-body p { color: var(--silver); font-size: 0.9rem; font-weight: 300; }

/* ── TEAM ── */
.team h2 { margin-bottom: 2.5rem; }
.team-grid { display: grid; gap: 2rem; }
@media (min-width: 480px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.team-img-wrap { overflow: hidden; width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.1rem; border: 3px solid rgba(201,169,110,0.3); flex-shrink: 0; transition: border-color 0.3s ease, border-width 0.3s ease; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrap { border-color: #C9A96E; border-width: 4px; }
.team-img-placeholder { width: 96px; height: 96px; border-radius: 50%; background: var(--bg-grey); display: flex; align-items: center; justify-content: center; color: var(--silver); border: 1px dashed rgba(192,168,130,0.35); flex-shrink: 0; margin: 0 auto 1.1rem; }
.team-card-body { width: 100%; display: flex; flex-direction: column; align-items: center; flex: 1; }
.team-card-body .link-arrow { margin-top: auto; padding-top: 0.5rem; }
.team-card-name { font-family: var(--font-serif); font-size: clamp(1.2rem, 2vw, 1.4rem); font-weight: 300; color: var(--text-main); margin-bottom: 0.2rem; }
.team-card-role { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }

/* ── GALLERY ── */
.gallery h2 { margin-bottom: 2rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } .gallery-item--tall { grid-row: span 2; } .gallery-item--wide { grid-column: span 2; } }
.gallery-item { overflow: hidden; background: var(--bg-grey); aspect-ratio: 1; }
.gallery-item--tall, .gallery-item--wide { aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); min-height: 200px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cta { margin-top: 2rem; text-align: center; }

/* ── TESTIMONIALS ── */
.testimonials { text-align: center; }
.testimonials h2 { margin-bottom: 2.5rem; }
.testimonials-list { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-list { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.testimonial { background: var(--bg-grey); padding: 2rem 1.75rem; text-align: left; position: relative; }
.testimonial::before { content: '\201C'; font-family: var(--font-serif); font-size: 4rem; color: var(--accent); opacity: 0.4; position: absolute; top: 0.5rem; left: 1.5rem; line-height: 1; pointer-events: none; }
.testimonial p { color: var(--text-main); margin-bottom: 1.25rem; font-style: italic; font-family: var(--font-serif); font-size: 1.05rem; }
.testimonial footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial cite { display: flex; flex-direction: column; gap: 2px; font-style: normal; }
.cite-name { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.cite-loc { font-size: 0.72rem; color: var(--text-muted); }
.reviews-cta-note { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: center; }

/* ── INSTAGRAM ── */
.instagram h2 { margin-bottom: 2rem; }
.instagram-placeholder { border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 4rem 2rem; text-align: center; }
.instagram-placeholder-inner { max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; color: var(--silver); }
.instagram-placeholder-inner svg { opacity: 0.5; }
.instagram-placeholder-inner p { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--white); line-height: 1.4; }
.instagram-placeholder-sub { font-size: 0.85rem !important; font-style: normal !important; font-family: var(--font-sans) !important; color: var(--silver) !important; margin-bottom: 0.5rem; }

/* ── BLOG ── */
.blog-preview h2 { margin-bottom: 2.5rem; }
.blog-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { display: flex; flex-direction: column; }
.blog-img-placeholder { display: block; aspect-ratio: 16 / 10; background: repeating-linear-gradient(-45deg, var(--bg-grey), var(--bg-grey) 14px, #eeece8 14px, #eeece8 28px); margin-bottom: 1.25rem; }
.blog-card-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.blog-card-title { font-family: var(--font-serif); font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 300; line-height: 1.35; color: var(--text-main); margin-bottom: 0.75rem; }
.blog-cta { margin-top: 3rem; text-align: center; }

/* ── BOOKING ── */
.booking-inner { text-align: center; margin: 0 auto; }
.booking h2 { margin-bottom: 1.25rem; }
.booking-body { color: var(--text-muted); max-width: 520px; margin: 0 auto 2.25rem; font-size: 1rem; }
.booking-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1rem; }
.booking-value-ctas { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1.75rem; }
.btn-ghost-value { background: transparent; color: var(--text-muted); border: 1px solid rgba(0,0,0,0.18); font-size: 0.72rem; letter-spacing: 0.1em; padding: 0.65rem 1.4rem; transition: all var(--transition); }
.btn-ghost-value:hover { background: var(--bg-grey); color: var(--charcoal); border-color: rgba(0,0,0,0.3); }
.booking-note { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.05em; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.4rem; margin-bottom: 0.5rem; }
.booking-map-btn { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: rgba(139,105,20,0.07); border: 1px solid rgba(139,105,20,0.25); padding: 0.3rem 0.8rem; border-radius: 50px; transition: all var(--transition); white-space: nowrap; }
.booking-map-btn:hover { background: var(--accent); color: var(--white); }
.booking-transport-note { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 0.35rem; }
.booking-transport-note svg { opacity: 0.6; flex-shrink: 0; }

/* ── PLACEHOLDER BLOCKS ── */
.placeholder-block { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; min-height: 320px; border: 1px dashed rgba(192,168,130,0.35); background: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(192,168,130,0.04) 18px, rgba(192,168,130,0.04) 36px); border-radius: var(--radius-sm); }
.placeholder-block-label { font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.placeholder-block-heading { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; color: var(--text-main); margin: 0; }
.section-dark .placeholder-block { border-color: rgba(192,168,130,0.2); background: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(255,255,255,0.02) 18px, rgba(255,255,255,0.02) 36px); }
.section-dark .placeholder-block-heading { color: var(--text-light); }

/* ── FOOTER ── */
.site-footer { background: var(--white); color: var(--text-muted); padding: 2.5rem 0 0; border-top: 1px solid rgba(0,0,0,0.08); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.footer-brand { grid-column: 1 / -1; order: 1; }
.footer-hours { grid-column: 1 / -1; order: 2; }
.footer-nav:nth-of-type(1) { order: 3; }
.footer-nav:nth-of-type(2) { order: 4; }
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.4fr 1.6fr 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: auto; order: unset; }
  .footer-hours { grid-column: auto; order: unset; }
  .footer-nav:nth-of-type(1), .footer-nav:nth-of-type(2) { order: unset; }
}
.footer-logo-main { display: none; }
.footer-logo-sub { display: none; }
.footer-socials--bottom { margin-top: 1.25rem; margin-bottom: 0; }
.footer-address { font-size: 0.82rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 0.6rem; }
.footer-address a { color: var(--text-muted); }
.footer-address a:hover { color: var(--charcoal); }
.footer-train-note { font-size: 0.68rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.35rem; line-height: 1.5; margin-bottom: 0.25rem; }
.footer-train-note svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-nav-heading { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--charcoal); margin-bottom: 1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.82rem; color: var(--text-muted); }
.footer-nav a:hover { color: var(--charcoal); }
.footer-hours-list { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.85rem; }
.footer-hours-list li { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); gap: 1rem; }
.footer-hours-list li span:first-child { font-weight: 500; color: var(--charcoal); min-width: 2rem; }
.footer-hours-note { font-size: 0.68rem; color: var(--accent); font-style: italic; font-family: var(--font-serif); font-size: 0.82rem; }
.footer-tagline { font-family: var(--font-serif); font-size: 0.92rem; font-style: italic; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; border-left: 2px solid var(--accent); padding-left: 0.85rem; }
.footer-tagline em { color: var(--accent); }
.footer-socials { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.social-btn { display: flex; align-items: center; gap: 0.65rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 0.9rem; border-radius: var(--radius-sm); border: 1px solid transparent; min-height: 40px; transition: all var(--transition); }
.social-btn--ig { background: #f9f4f1; color: #3d2c26; border-color: rgba(192,168,130,0.25); }
.social-btn--ig:hover { background: var(--accent); color: var(--white); }
.social-btn--fb { background: #f2f4f8; color: #1a2a4a; border-color: rgba(70,100,180,0.15); }
.social-btn--fb:hover { background: #1877f2; color: var(--white); }
.footer-booking-note { font-size: 0.72rem; color: var(--text-muted); }
.footer-bottom { background: var(--bg-grey); padding: 1rem 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; align-items: center; justify-content: space-between; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.7rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--charcoal); }
.footer-copy, .footer-credit { font-size: 0.7rem; color: var(--text-muted); }
.footer-credit a { color: var(--accent); }

/* ── Footer accordion (mobile collapsible sections) ────────── */
details.footer-hours { display: grid; }
.footer-collapse > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  list-style: none;
}
.footer-collapse > summary::-webkit-details-marker { display: none; }
.footer-collapse > summary::marker { display: none; content: ''; }
.footer-collapse-chevron {
  flex-shrink: 0;
  color: var(--accent-light);
  transition: transform 0.25s ease;
}
details.footer-collapse[open] > summary .footer-collapse-chevron {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .footer-collapse > summary {
    cursor: pointer;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    margin-bottom: 0;
  }
  details.footer-collapse[open] > summary {
    border-bottom: none;
    margin-bottom: 0.75rem;
  }
  .footer-collapse > summary.footer-nav-heading { margin-bottom: 0; }
}
@media (min-width: 768px) {
  .footer-collapse-chevron { display: none; }
  .footer-collapse > summary {
    pointer-events: none;
    cursor: default;
    margin-bottom: 1rem;
  }
}

/* ── STICKY MOBILE CTA ── */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; display: grid; grid-template-columns: 1fr 2fr; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); height: calc(56px + env(safe-area-inset-bottom, 0px)); transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.sticky-cta.visible { transform: translateY(0); }
.sticky-btn { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; min-height: 56px; transition: opacity var(--transition); }
.sticky-btn:hover { opacity: 0.88; }
.sticky-call { background: var(--soft-grey); color: var(--white); border-right: 1px solid rgba(255,255,255,0.08); }
.sticky-book { background: var(--charcoal); color: var(--white); }
.sticky-book:hover { background: var(--accent); }
@media (min-width: 1024px) { .sticky-cta { display: none; } }
@media (max-width: 1023px) { body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); } }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
@media print { .site-header, .sticky-cta, .nav-backdrop { display: none; } body { color: #000; padding-bottom: 0; } }

/* ── Intro visit strip (homepage) ───────────────────────────────── */
.intro-visit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.intro-visit-notes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.intro-visit-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #888;
}
.intro-visit-note svg { flex-shrink: 0; color: #C9A96E; }

/* ============================================================
   AROHA — Visual Refresh Layer
   ============================================================ */

/* ── Scroll Reveal System ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none !important; transition: none !important; }
}

/* ── Hero content stagger ── */
.hero-content { animation: none; }
.hero-eyebrow  { animation: heroFadeUp 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both; }
.hero h1       { animation: heroFadeUp 0.9s  cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s both; }
.hero-sub      { animation: heroFadeUp 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s both; }
.hero-ctas     { animation: heroFadeUp 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.85s both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Label-text gold underline for centred sections ── */
.intro .label-text,
.testimonials .label-text,
.booking .label-text {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 1.25rem;
}
.intro .label-text::after,
.testimonials .label-text::after,
.booking .label-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ── Enhanced testimonial cards ── */
.testimonial {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.12);
  border-top: 3px solid var(--accent-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.045);
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-top-color 0.3s ease;
}
.testimonial:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.09);
  transform: translateY(-5px);
  border-top-color: var(--accent);
}
.testimonial::before { opacity: 0.2; font-size: 5.5rem; top: -0.25rem; }

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.9rem;
  color: var(--accent-light);
}

/* ── Blog card enhancement ── */
.blog-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.blog-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
}
.blog-card-body::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-light), transparent);
  margin-bottom: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.blog-card:hover .blog-card-body::before { opacity: 1; }

/* ── Booking section visual upgrade ── */
.booking {
  background: linear-gradient(160deg, #fdfcf8 0%, #f7f3ea 50%, #fdfcf8 100%);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: 'AROHA';
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(9rem, 20vw, 22rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(201,169,110,0.07);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}

/* ── Team card refinements ── */
.team-card-name { transition: color var(--transition); }
.team-card:hover .team-card-name { color: var(--accent); }
.team-card:hover .team-img-wrap { box-shadow: 0 6px 24px rgba(201,169,110,0.22); }

/* ── Gallery items — subtle hover overlay ── */
.gallery-item { position: relative; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,0);
  transition: background 0.35s ease;
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(20,20,20,0.28); }

/* ── Service card image overlay on hover ── */
.service-img-wrap { position: relative; }
.service-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service-card:hover .service-img-wrap::after { opacity: 1; }
