/* RU Dancing Academy — styles.css */

:root {
  --black:        #0a0a0a;
  --charcoal:     #121212;
  --amber:        #EC8B2E;
  --cream:        #F7E7D1;
  --slate:        #b6b6b6;
  --white:        #ffffff;
  --shadow:       rgba(0,0,0,0.35);
  --glass:        rgba(255,255,255,0.06);
  --glass-border: rgba(236,139,46,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
p  { line-height: 1.8; font-weight: 300; }
img { border-radius: 0 !important; }

/* ── NAVBAR (homepage) ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(236,139,46,0.12);
  transition: all .4s ease;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900; letter-spacing: 0.04em;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 0.2em;
}
.nav-logo img  { height: 125px; width: auto; display: block; }
.nav-logo em   { color: var(--amber); font-style: normal; text-shadow: 0 0 20px rgba(236,139,46,0.35); }
.nav-logo span { font-weight: 400; opacity: .85; }

.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; transition: all .3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -8px; left: 50%;
  width: 0; height: 2px; background: var(--amber);
  transition: all .35s ease; transform: translateX(-50%);
}
.nav-links a:hover        { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--amber), #F5A623);
  color: var(--black) !important;
  padding: 0.8rem 1.6rem; border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(236,139,46,0.28);
  transition: all .3s ease;
}
.nav-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(236,139,46,0.45); }

/* ── PAGE TOP NAV (subpages) ── */
/*
   Used on all standalone subpages instead of the homepage <nav>.
   Requires <nav class="page-topnav" id="navbar"> in the HTML.
   Remove the matching <style> block from individual page <head> sections
   now that these rules live here.
*/
.page-topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(236,139,46,0.2);
}
.page-topnav .back-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--amber); text-decoration: none;
  transition: opacity .2s ease;
}
.page-topnav .back-link:hover { opacity: 0.75; text-decoration: underline; }

/* Desktop nav links inside .page-topnav */
.page-topnav .nav-links {
  display: flex; list-style: none;
  align-items: center; gap: 1.5rem;
}
.page-topnav .nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  opacity: 0.7; transition: opacity .2s ease, color .2s ease;
}
.page-topnav .nav-links a:hover  { opacity: 1; color: var(--amber); }
/* Add class="active" to the link matching the current page */
.page-topnav .nav-links a.active { opacity: 1; color: var(--amber); }

/* Book a Lesson CTA button inside .page-topnav */
.page-topnav .nav-cta-sm {
  background: var(--amber); color: var(--black);
  padding: 0.6rem 1.4rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: filter .2s ease;
}
.page-topnav .nav-cta-sm:hover { filter: brightness(1.08); }

/* Hide desktop links + show hamburger on small screens */
.page-topnav .hamburger { display: none; }
@media (max-width: 720px) {
  .page-topnav .nav-links  { display: none; }
  .page-topnav .hamburger  { display: flex; }
}

/* ── FOOTER LOGO ── */
/*
   Used in the footer brand column: <a href="index.html" class="footer-logo">
   Matches the visual weight of the homepage .nav-logo but sized for the footer.
*/
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900; letter-spacing: 0.04em;
  color: var(--white); text-decoration: none;
  display: inline-block; margin-bottom: 0.25rem;
}
.footer-logo .flip { color: var(--amber); }
.footer-logo:hover  { color: var(--amber); }

/* ── MOBILE MENU ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 28px; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(0,0,0,0.98); backdrop-filter: blur(20px);
  z-index: 2000; transform: translateX(-100%); transition: transform 0.4s ease;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color .3s ease;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }

/* ── BUTTONS ── */
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.35rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent;
  transition: transform .15s ease, filter .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  user-select: none; cursor: pointer;
}
.btn-primary { background: var(--amber); color: #000; border-color: rgba(236,139,46,0.55); }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-outline { background: rgba(0,0,0,0.25); color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.22); }
.btn-outline:hover { border-color: rgba(236,139,46,0.55); color: rgba(236,139,46,0.95); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch; padding: 0;
  position: relative; overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid rgba(236,139,46,0.12);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 22% 45%, rgba(236,139,46,0.14) 0%, transparent 58%),
    radial-gradient(ellipse at 70% 72%, rgba(234,181,133,0.10) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(2.25rem,5vw,6rem);
  padding-top: clamp(7rem,12vh,10rem);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-content::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 48%, rgba(0,0,0,0) 72%);
  pointer-events: none; z-index: -1;
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(236,139,46,0.95); font-weight: 800; margin-bottom: 1.3rem;
  display: inline-flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; width: 46px; height: 1px; background: rgba(236,139,46,0.75); }
.hero h1     { margin-bottom: 1.25rem; }
.hero h1 em  { font-style: italic; color: var(--amber); }
.hero-sub    { font-size: 0.98rem; color: rgba(154,152,152,0.95); margin-bottom: 2.1rem; max-width: 520px; letter-spacing: 0.03em; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2.25rem; }
.badge {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(247,235,222,0.18); background: rgba(0,0,0,0.35); color: rgba(247,235,222,0.88);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative; z-index: 1; height: 100vh; overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.08);
  background: #000; display: flex; align-items: flex-start;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center -20%;
  display: block; position: absolute; top: 0; left: 0;
}
.hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.18) 18%, rgba(0,0,0,0) 42%),
    radial-gradient(ellipse at 50% 20%, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.stats-strip {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.72); backdrop-filter: blur(10px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { padding: 1.2rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.stat-item:last-child { border-right: none; }
.stat-num   { font-family: 'Playfair Display', serif; font-size: 1.65rem; color: var(--amber); font-weight: 800; display: block; margin-bottom: 0.2rem; }
.stat-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(154,152,152,0.95); font-weight: 700; }

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(0,0,0);
  border-top: 1px solid rgba(236,139,46,0.10);
  border-bottom: 1px solid rgba(236,139,46,0.10);
  padding: 2rem 4rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem;
}
.trust-item { display: flex; align-items: center; gap: 1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.trust-icon { width: 40px; height: 40px; background: rgba(236,139,46,0.14); border: 1px solid rgba(236,139,46,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

/* ── SECTION HELPERS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--amber); }
.divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(236,139,46,0.4), transparent); }

/* ── PILLARS ── */
.pillars-section { padding: 8rem 4rem; max-width: 1400px; margin: 0 auto; }
.pillars-intro { text-align: center; margin-bottom: 5rem; }
.pillars-intro h2 { font-size: clamp(2.5rem,4vw,3.5rem); font-weight: 900; margin-bottom: 1.5rem; }
.pillars-intro h2 em { color: var(--amber); font-style: normal; }
.pillars-intro p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 700px; margin: 0 auto; line-height: 1.8; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.pillar-item { padding: 2.5rem 2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); transition: all .4s ease; }
.pillar-item:hover { transform: translateY(-8px); border-color: rgba(236,139,46,0.35); box-shadow: 0 25px 60px rgba(0,0,0,0.35); }
.pillar-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: block; }
.pillar-item h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.pillar-item p  { color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ── SERVICES ── */
.services-section { padding: 8rem 4rem; max-width: 1400px; margin: 0 auto; }
.services-intro { text-align: center; margin-bottom: 5rem; }
.services-intro h2 { font-size: clamp(2.5rem,4vw,3.5rem); font-weight: 900; margin-bottom: 1.5rem; }
.services-intro h2 em { color: var(--amber); font-style: normal; }
.services-intro p  { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 750px; margin: 0 auto; line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.service-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; text-decoration: none; color: inherit; transition: all .4s ease;
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(236,139,46,0.35); box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.service-image { height: 220px; background-size: cover; background-position: center; border-radius: 0 !important; }
.service-tag  { padding: 1.5rem 2rem 0; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); }
.service-card h3 { padding: 0.75rem 2rem; font-size: 1.4rem; font-weight: 700; }
.service-card p  { padding: 0 2rem 1.5rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.service-link    { padding: 0 2rem 2rem; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); }
.service-card--about { display: flex; flex-direction: column; }
.about-sublinks { list-style: none; padding: 0 2rem 1.75rem; display: grid; gap: 0.45rem; }
.about-sublinks li a {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .25s ease, border-color .25s ease;
}
.about-sublinks li a::before { content: '→'; color: var(--amber); font-weight: 900; font-size: 0.75rem; opacity: 0.7; transition: opacity .25s ease, transform .2s ease; }
.about-sublinks li a:hover   { color: var(--amber); border-color: rgba(236,139,46,0.25); }
.about-sublinks li a:hover::before { opacity: 1; transform: translateX(3px); }
.about-sublinks li:last-child a    { border-bottom: none; }

/* ── ACHIEVEMENTS TIMELINE ── */
.ach-wrap   { display: flex; flex-direction: column; gap: 2.5rem; }
.ach-year-block { display: flex; flex-direction: column; gap: 0.6rem; }
.ach-year-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.ach-year-label  { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--amber); white-space: nowrap; }
.ach-year-line   { flex: 1; height: 1px; background: rgba(236,139,46,0.25); }
.ach-entry {
  display: grid; grid-template-columns: 2.2rem 1fr auto;
  gap: 0.75rem; align-items: start; padding: 0.7rem 1rem;
  border-radius: 6px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04); transition: background .2s ease;
}
.ach-entry:hover     { background: rgba(255,255,255,0.05); }
.ach-entry.ach-highlight { background: rgba(236,139,46,0.06); border-color: rgba(236,139,46,0.15); }
.ach-icon       { font-size: 1.1rem; text-align: center; line-height: 1.4; }
.ach-event-name { font-weight: 700; font-size: 0.95rem; color: var(--cream); line-height: 1.4; }
.ach-event-sub  { font-size: 0.8rem; color: var(--slate); margin-top: 0.15rem; }
.ach-placement  { text-align: right; font-size: 0.8rem; color: var(--slate); line-height: 1.5; white-space: nowrap; }
.ach-placement.ach-gold    { color: var(--amber); font-weight: 700; }
.ach-placement.ach-special { color: #d4a5ff; font-weight: 700; }
.ach-placement img { max-width: 100px; margin-top: 0.5rem; border-radius: 4px; }

/* ── ABOUT (TWO-COLUMN) ── */
.about-grid-section {
  padding: 8rem 4rem;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(236,139,46,0.10);
  border-bottom: 1px solid rgba(236,139,46,0.10);
}
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-photo {
  width: 100%; max-width: 440px; margin: 0 auto;
  overflow: hidden; border: 1px solid rgba(236,139,46,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  transform: translate3d(var(--about-par-x,0px), var(--about-par-y,0px), 0);
  transition: transform .25s ease, box-shadow .35s ease, border-color .35s ease;
  will-change: transform;
}
.about-photo img { width: 100%; height: auto; display: block; }
.about-photo-fx { position: relative; }
.about-photo-fx::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 25% 20%, rgba(236,139,46,0.18), transparent 60%),
    radial-gradient(520px 320px at 70% 60%, rgba(255,255,255,0.08), transparent 55%),
    linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0));
  mix-blend-mode: screen; opacity: 0.85; pointer-events: none;
}
.about-photo-fx::after { content: ''; position: absolute; inset: -2px; border: 1px solid rgba(236,139,46,0.35); opacity: 0.25; pointer-events: none; }
.about-caption { margin-top: 1.25rem; text-align: center; color: rgba(255,255,255,0.78); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.75rem; }
.about-caption-name { display: block; color: var(--amber); font-weight: 900; letter-spacing: 0.14em; margin-bottom: 0.25rem; }
.about-caption-role { display: block; opacity: 0.85; }
.about-text h2    { font-size: clamp(2.2rem,3.5vw,3.2rem); font-weight: 900; margin-bottom: 1.5rem; }
.about-text h2 em { color: var(--amber); font-style: normal; }
.achievement-list { list-style: none; margin-top: 1.5rem; }
.achievement-list li { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; padding-left: 2rem; color: rgba(255,255,255,0.78); }
.achievement-list li::before { content: '✦'; position: absolute; left: 0; color: var(--amber); opacity: 0.9; }

/* ── WEDDING ── */
.wedding-section { padding: 8rem 4rem; max-width: 1400px; margin: 0 auto; }
.wedding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.wedding-content h2    { font-size: clamp(2.4rem,3.8vw,3.4rem); font-weight: 900; margin-bottom: 1.5rem; }
.wedding-content h2 em { color: var(--amber); font-style: normal; }
.wedding-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.25rem; }
.wedding-features { list-style: none; margin: 2rem 0 2.5rem; display: grid; gap: 0.85rem; }
.wedding-features li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.78); }
.feat-icon { color: var(--amber); font-weight: 900; }
.wedding-visual { position: relative; }
.wedding-photo { width: 100%; height: auto; display: block; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
.wedding-quote { margin-top: 1.5rem; padding: 1.75rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(236,139,46,0.18); }
.wedding-quote p    { font-family: 'Playfair Display', serif; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 0.75rem; }
.wedding-quote cite { color: var(--amber); font-style: normal; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.wedding-packages { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.package-card { padding: 1.25rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.package-card.featured { border-color: rgba(236,139,46,0.35); box-shadow: 0 18px 45px rgba(0,0,0,0.35); }
.package-name     { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }
.package-sessions { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; margin-bottom: 0.75rem; }
.package-sessions span { font-family: 'Josefin Sans', sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.package-desc { color: rgba(255,255,255,0.72); line-height: 1.7; font-size: 0.9rem; margin-bottom: 1rem; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 8rem 4rem;
  background: rgba(0,0,0);
  border-top: 1px solid rgba(236,139,46,0.10);
  border-bottom: 1px solid rgba(236,139,46,0.10);
}
.testimonials-intro { text-align: center; margin-bottom: 4rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.testimonials-intro h2 { font-size: clamp(2.4rem,3.8vw,3.4rem); font-weight: 900; margin-bottom: 1.5rem; }
.testimonials-intro p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.85; }
.google-reviews-strip {
  max-width: 900px; margin: 0 auto 3.5rem; padding: 1.5rem 2rem;
  background: rgba(236,139,46,0.09); border: 1px solid rgba(236,139,46,0.25);
  display: flex; gap: 1.25rem; align-items: center; justify-content: center; text-align: center;
}
.google-rating { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; color: var(--amber); }
.testimonials-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testimonial-card { padding: 2.25rem 2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); transition: all .4s ease; }
.testimonial-card:hover { transform: translateY(-8px); border-color: rgba(236,139,46,0.35); box-shadow: 0 25px 60px rgba(0,0,0,0.35); }
.transformation-badge { display: inline-block; padding: 0.45rem 0.9rem; background: rgba(236,139,46,0.12); border: 1px solid rgba(236,139,46,0.25); color: var(--amber); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.25rem; }
.stars { color: var(--amber); font-size: 1.2rem; margin-bottom: 1.25rem; }
.testimonial-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.8; margin-bottom: 1.75rem; }
.testimonial-author strong { display: block; color: var(--white); font-weight: 900; margin-bottom: 0.25rem; }
.testimonial-author span  { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.video-placeholder { position: relative; aspect-ratio: 16/9; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.play-btn  { width: 70px; height: 70px; border-radius: 999px; background: rgba(236,139,46,0.9); color: var(--black); font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(236,139,46,0.35); }
.video-label { position: absolute; bottom: 1rem; left: 1rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.78); }

/* ── CALENDAR SECTION ── */
.calendar-section {
  padding: 8rem 4rem;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(236,139,46,0.10);
  border-bottom: 1px solid rgba(236,139,46,0.10);
}
.calendar-inner { max-width: 800px; margin: 0 auto; }
.calendar-header { text-align: center; margin-bottom: 3rem; }
.calendar-header h2    { font-size: clamp(2.4rem,3.8vw,3.4rem); font-weight: 900; margin-bottom: 1.25rem; }
.calendar-header h2 em { color: var(--amber); font-style: normal; }
.calendar-header p { color: rgba(255,255,255,0.70); font-size: 1.05rem; line-height: 1.85; max-width: 740px; margin: 0 auto; }
.calendar-frame-wrap {
  position: relative; border: 1px solid rgba(236,139,46,0.20);
  background: var(--charcoal); overflow: hidden;
}
.calendar-frame-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  z-index: 2; pointer-events: none;
}
.calendar-frame-wrap iframe {
  display: block; width: 100%; min-height: 600px; border: 0;
  filter: invert(0.92) hue-rotate(178deg) saturate(0.8) brightness(0.88);
}
.calendar-fallback { text-align: center; padding: 0.75rem 1rem; background: rgba(0,0,0,0.35); border-top: 1px solid rgba(255,255,255,0.06); }
.calendar-fallback p { font-size: 0.8rem; color: rgba(255,255,255,0.50); margin: 0; }
.calendar-fallback a { color: var(--amber); text-decoration: none; font-weight: 700; }
.calendar-fallback a:hover { text-decoration: underline; }
.calendar-cta { margin-top: 2.5rem; text-align: center; }
.calendar-cta p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 1.25rem; }

/* ── GUIDES ── */
.guide-section { padding: 8rem 4rem; max-width: 1200px; margin: 0 auto; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.guide-card { padding: 2.5rem 2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.guide-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.guide-card p  { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1.25rem; }
.guide-steps { margin-left: 0; list-style: none; display: grid; gap: 0.9rem; }
.guide-steps li { display: flex; gap: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.7; }
.step-num { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; background: rgba(236,139,46,0.14); border: 1px solid rgba(236,139,46,0.25); color: var(--amber); font-weight: 900; font-size: 0.8rem; flex: 0 0 auto; }

/* ── LOCAL ── */
.local-section {
  padding: 8rem 4rem;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(236,139,46,0.10);
  border-bottom: 1px solid rgba(236,139,46,0.10);
}
.local-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.local-content h2    { font-size: clamp(2.2rem,3.6vw,3.2rem); font-weight: 900; margin-bottom: 1.25rem; }
.local-content h2 em { color: var(--amber); font-style: normal; }
.local-content p { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.5rem; }
.neighbourhoods { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.neighbourhood-tag { padding: 0.5rem 0.9rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.address-block { padding: 1.5rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.address-block strong { color: var(--amber); }
.address-block span   { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.map-container { border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); overflow: hidden; height: 420px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ── FAQ ── */
.faq-section { padding: 8rem 4rem; max-width: 1000px; margin: 0 auto; }
.faq-container { display: grid; gap: 1rem; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 1.5rem 1.75rem; color: var(--white); font-weight: 800; letter-spacing: 0.02em; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-icon { font-size: 1.2rem; color: var(--amber); font-weight: 900; transition: transform .25s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; border-top: 1px solid rgba(255,255,255,0.08); }
.faq-answer p { padding: 1.25rem 1.75rem 1.75rem; color: rgba(255,255,255,0.72); line-height: 1.85; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-item.open .faq-icon   { transform: rotate(45deg); }

/* ── CTA BANNER ── */
.cta-banner { padding: 7rem 2rem; text-align: center; background: linear-gradient(135deg, var(--amber), #F5A623); color: var(--black); }
.cta-banner h2 { font-weight: 900; font-size: clamp(2.2rem,4vw,3.2rem); margin-bottom: 1rem; }
.cta-banner p  { max-width: 800px; margin: 0 auto; font-size: 1.05rem; line-height: 1.85; font-weight: 600; }
.btn-dark { display: inline-block; margin-top: 2rem; background: var(--black); color: var(--cream); text-decoration: none; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; padding: 1rem 2.2rem; border-radius: 999px; box-shadow: 0 18px 45px rgba(0,0,0,0.35); transition: transform .3s ease; }
.btn-dark:hover { transform: translateY(-3px); }
.shimmer-text { background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.35), rgba(0,0,0,0.85)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── FOOTER ── */
footer { padding: 6rem 4rem 2.5rem; background: var(--black); border-top: 1px solid rgba(236,139,46,0.10); }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer-brand p { margin-top: 1.25rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
.footer-address { margin-top: 1.5rem; color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4  { color: var(--amber); font-weight: 900; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links   { list-style: none; display: grid; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; line-height: 1.4; transition: color .25s ease; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { max-width: 1400px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
/* .footer-keywords removed — keyword stuffing div no longer used */

/* ── SERVICE PAGES ── */
.service-page {
  display: none; min-height: 100vh;
  background: linear-gradient(180deg, rgba(0,0,0,0.94), rgba(0,0,0,0.98)), var(--page-bg);
  background-size: cover; background-position: center; background-attachment: fixed;
  color: var(--white);
}
.service-page.active { display: block; }
/* Standalone subpages override display:none without JS */
.service-page.standalone { display: block !important; }
.service-hero { padding: 8rem 4rem 3rem; max-width: 1200px; margin: 0 auto; text-align: left; }
.service-hero h1    { font-size: clamp(2.6rem,4.8vw,4.2rem); font-weight: 900; line-height: 1.1; margin: 0.75rem 0 1.25rem; }
.service-hero h1 em { color: var(--amber); font-style: normal; }
.service-hero p     { max-width: 760px; color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.85; }
.service-content { padding: 3rem 4rem 6rem; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; }
.service-main h2 { font-size: 1.9rem; font-weight: 800; margin: 2.25rem 0 1rem; }
.service-main p, .service-main li { color: rgba(255,255,255,0.75); line-height: 1.85; }
.service-main ul { margin: 1rem 0 1rem 1.25rem; }
.sidebar-card { position: sticky; top: 6.25rem; padding: 2rem 1.5rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(236,139,46,0.18); }

/* ── FLOATING BACK BUTTONS ── */
#floatingBack {
  position: fixed; left: 1.25rem; bottom: 1.25rem; z-index: 2500;
  display: none;
  background: rgba(0,0,0,0.88); border: 1px solid rgba(236,139,46,0.25);
  color: var(--amber); padding: 0.75rem 1.1rem;
  font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.7rem;
  cursor: pointer;
}
.top-return-arrow {
  position: fixed; top: 5.5rem; left: 1.25rem; z-index: 2500;
  width: 42px; height: 42px; display: none; align-items: center; justify-content: center;
  border: 1px solid rgba(236,139,46,0.25); background: rgba(0,0,0,0.88);
  color: var(--amber); cursor: pointer;
}

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(18px); transition: all .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FLIP ── */
.flip { display: inline-block; transform: scaleX(-1); }

/* ── ABOUT RICHARD: editorial image layouts ── */
.about-paired-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin: 2.25rem 0; }
.about-paired-row img { width: 100%; height: auto; display: block; border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.02); }
.about-inline-row { display: grid; grid-template-columns: 1fr 320px; gap: 1.75rem; align-items: stretch; margin: 1.75rem 0; }
.about-inline-text { display: flex; flex-direction: column; justify-content: center; }
.about-inline-img { border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.02); padding: 0.75rem; display: flex; align-items: stretch; }
.about-inline-img img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ── MISSION & VALUES ── */
.mission-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0 2.5rem; }
.mission-pillar { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); transition: border-color .3s ease; }
.mission-pillar:hover { border-color: rgba(236,139,46,0.3); }
.mission-pillar-icon { font-size: 1.6rem; flex: 0 0 auto; line-height: 1; margin-top: 0.15rem; }
.mission-pillar h3 { font-size: 1rem; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 0.4rem; color: var(--cream); }
.mission-pillar p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.value-card { padding: 1.75rem 1.5rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); transition: all .35s ease; }
.value-card:hover { transform: translateY(-6px); border-color: rgba(236,139,46,0.35); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.value-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.value-card h3 { font-size: 1rem; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 0.5rem; color: var(--cream); }
.value-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }

/* ── ZOOM FLOAT (clone-based, flicker-free) ── */
.zoom-float         { position: relative; display: inline-block; cursor: zoom-in; }
.zoom-float img     { display: block; width: 100%; height: auto; transition: opacity 0.25s ease; }
.zoom-float.zoomed img { opacity: 0.35; }
.zoom-container     { display: inline-block; }
.zoom-backdrop      { position: fixed; inset: 0; background: transparent; z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.zoom-backdrop.visible { opacity: 1; pointer-events: auto; }
.zoom-clone {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.92);
  z-index: 9999; pointer-events: none;
  max-width: min(90vw, 900px); max-height: 90vh; width: auto; height: auto;
  object-fit: contain;
  box-shadow: 0 60px 160px rgba(0,0,0,0.75); border: 1px solid rgba(236,139,46,0.30);
  opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease;
}
.zoom-clone.visible { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 1.25rem 2rem; }
  .services-section, .pillars-section, .wedding-section,
  .testimonials-section, .guide-section, .local-section,
  .faq-section, .calendar-section { padding-left: 2rem; padding-right: 2rem; }
  .trust-bar   { padding: 2rem; justify-content: center; }
  .services-grid     { grid-template-columns: repeat(2,1fr); }
  .pillars-grid      { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .wedding-grid      { grid-template-columns: 1fr; }
  .wedding-packages  { grid-template-columns: 1fr; }
  .local-grid  { grid-template-columns: 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-photo { max-width: 480px; }
  .service-content { grid-template-columns: 1fr; }
  .sidebar-card { position: relative; top: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .service-page { background-attachment: scroll; }
}

@media (max-width: 720px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto; min-height: unset; }
  .hero-visual {
    order: -1; height: auto !important; min-height: unset; max-height: unset;
    border-left: none; border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-direction: column;
  }
  .hero-img {
    position: relative !important; top: auto !important; left: auto !important;
    width: 100%; height: 60vw; min-height: 260px; max-height: 400px;
    object-fit: cover; object-position: center -5%; display: block;
  }
  .stats-strip { position: relative !important; bottom: auto !important; width: 100%; display: grid !important; grid-template-columns: repeat(3,1fr) !important; }
  .stat-item  { padding: 1rem 0.5rem; }
  .stat-num   { font-size: 1.2rem; }
  .stat-label { font-size: 0.6rem; }
  .hero-content { padding: 2.5rem 1.25rem 3rem; }
  .hero h1      { font-size: 2.7rem; }
  .hero-sub     { font-size: 1rem; }
  .hero-actions a { width: 100%; text-align: center; }
  .hero-badges  { display: none; }
  .services-grid     { grid-template-columns: 1fr; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .guide-grid        { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .nav-logo img { height: 40px; }
  .service-hero, .service-content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .calendar-section { padding: 4rem 1.25rem; }
  .calendar-frame-wrap iframe { min-height: 500px; }
  .calendar-cta { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
  .calendar-cta .btn-outline { margin-left: 0 !important; }
  .about-inline-row  { grid-template-columns: 1fr; }
  .about-paired-row  { grid-template-columns: 1fr; }
  .about-inline-img  { padding: 0.5rem; }
  .mission-pillars   { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .ach-entry { grid-template-columns: 1.8rem 1fr; gap: 0.5rem; }
  .ach-placement { grid-column: 1 / -1; text-align: left; padding-left: 2.3rem; white-space: normal; }
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:visited {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #E8A020;
    text-decoration: none;
}
