/* ============================================
   DAWSON BERTRAND | SAXOPHONE
   Main Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lora:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F7F4;
  --bg-dark: #111111;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-light: #999999;
  --accent: #C4A55A;
  --accent-dark: #9B7E3A;
  --accent-light: #E8D9A8;
  --border: #E8E8E8;
  --border-dark: #D0D0D0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --nav-height: 76px;
  --max-width: 1160px;
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.25s ease;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section--gray {
  background: var(--bg-secondary);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.7);
}

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 16px auto;
}

.divider--left {
  margin-left: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--text-primary);
  border-color: var(--white);
}

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

.btn-gold-outline:hover {
  background: var(--accent);
  color: var(--white);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.35s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.nav.nav--dark-page {
  background: rgba(17,17,17,0.95);
}

.nav.nav--dark-page.scrolled {
  background: rgba(17,17,17,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav__logo-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.nav.scrolled .nav__logo-name {
  color: var(--text-primary);
}

.nav.nav--light .nav__logo-name {
  color: var(--text-primary);
}

.nav.nav--light.scrolled .nav__logo-name {
  color: var(--text-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link.active {
  color: var(--accent);
}

.nav.scrolled .nav__link {
  color: var(--text-secondary);
}

.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active {
  color: var(--accent);
}

.nav.nav--light .nav__link {
  color: var(--text-secondary);
}

.nav.nav--light .nav__link:hover,
.nav.nav--light .nav__link.active {
  color: var(--accent);
}

.nav__cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.1em;
}

.nav__cta::after { display: none; }

.nav__cta:hover {
  background: var(--accent-dark);
  color: var(--white) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav.scrolled .nav__hamburger span,
.nav.nav--light .nav__hamburger span {
  background: var(--text-primary);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(20px);
  padding: 24px 2rem 32px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
}

.nav__mobile.open {
  transform: translateY(0);
  display: flex;
}

.nav__mobile-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav__mobile-link:hover,
.nav__mobile-link.active {
  color: var(--accent);
}

.nav__mobile-link:last-child {
  border-bottom: none;
  margin-top: 8px;
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-home.jpg?v=11');
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 1s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.18) 40%, rgba(0,0,0,0.26) 70%, rgba(0,0,0,0.5) 100%);
}

/* Gold-outlined hero title, skin-tone gray fill */
.hero__content .hero__title {
  color: #b8b8b8;
  -webkit-text-stroke: 1.5px var(--accent);
  text-stroke: 1.5px var(--accent);
  paint-order: stroke fill;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.hero__title-line { display: block; white-space: nowrap; }

.hero__eyebrow--mid {
  margin: 0.55rem 0;
}

/* Single cohesive, tapered backdrop behind the headline + subtitle */
.hero__textwrap {
  position: relative;
  padding: 24px 58px 28px;
}
.hero__textwrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0,0,0,0.42);
  clip-path: polygon(1% 0%, 99% 0%, 90% 100%, 10% 100%);
  -webkit-mask-image: radial-gradient(135% 118% at 50% 44%, #000 74%, rgba(0,0,0,0) 100%);
          mask-image: radial-gradient(135% 118% at 50% 44%, #000 74%, rgba(0,0,0,0) 100%);
}

.hero__content .hero__subtitle,
.hero__content .hero__eyebrow {
  text-shadow: 0 1px 10px rgba(0,0,0,0.8), 0 0 24px rgba(0,0,0,0.5);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 2rem;
  transform: translateY(90px);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

/* Responsive text helpers: full copy on desktop, condensed on mobile */
.show-mobile { display: none; }       /* inline snippet shown only on mobile */
.show-desktop { display: inline; }    /* inline snippet hidden on mobile */
/* .hide-mobile: block element (e.g. a paragraph) hidden on mobile */

.hero__subtitle {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  opacity: 0.5;
}

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

/* Page Hero (inner pages) */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg?v=11');
  background-size: cover;
  background-position: center 14%;
  opacity: 0.42;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

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

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg-secondary);
}

.card__body {
  padding: 28px;
}

.card__body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Events --- */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 26px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.event-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Black date block with a gold border */
.event-item__date {
  text-align: center;
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 12px 6px;
  border: 2px solid var(--accent);
}

.event-item__date-month {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  display: block;
}

.event-item__date-day {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 700;
  color: #fff;
  -webkit-text-stroke: 0.5px var(--accent);
  text-stroke: 0.5px var(--accent);
  paint-order: stroke fill;
  line-height: 1;
  display: block;
}

.event-item__date-year {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  display: block;
}

.event-item__type {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: none;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.event-item__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.event-item__venue {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-item__time {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 5px;
}

.no-events {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
}

.no-events h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

/* --- Media Gallery --- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-grid--video {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.media-photo {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  position: relative;
  cursor: pointer;
}

.media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.media-photo:hover img {
  transform: scale(1.05);
}

.media-photo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.media-photo:hover .media-photo__overlay {
  opacity: 1;
}

.media-photo--placeholder {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #e8e0d5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
}

.video-embed {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

.video-embed__placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 100%);
  color: rgba(255,255,255,0.85);
  transition: all var(--transition);
  cursor: pointer;
}

.video-embed__placeholder:hover {
  background: linear-gradient(135deg, #201d18 0%, #342d22 100%);
}

.video-embed__play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding-left: 4px;
  transition: transform var(--transition);
  box-shadow: 0 6px 24px rgba(196,165,90,0.4);
}

.video-embed__placeholder:hover .video-embed__play {
  transform: scale(1.1);
}

.video-embed__placeholder-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Service Areas (local SEO) */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.area-chip::before {
  content: '📍';
  font-size: 0.8rem;
}

.area-chip:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

/* Instagram Reels */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  justify-content: center;
}

.reels-grid .instagram-media {
  margin: 0 auto !important;
  min-width: unset !important;
}

.reel-card {
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #2a2520 0%, #1a1a1a 60%, #3a2a3a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.reel-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 4px;
  box-shadow: 0 6px 24px rgba(196,165,90,0.4);
}

.reel-card__text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-embed__caption {
  padding: 16px 20px;
}

.video-embed__caption h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.video-embed__caption p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox__close:hover { opacity: 1; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent-light);
  line-height: 0.8;
  position: absolute;
  top: 24px;
  left: 28px;
  user-select: none;
}

.testimonial__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
  padding-top: 28px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial__event {
  font-size: 0.8rem;
  color: var(--text-light);
}

.stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  grid-template-areas:
    "intro   form"
    "details form";
  column-gap: 80px;
  row-gap: 32px;
  align-items: start;
  align-content: start;
}
.contact-intro { grid-area: intro; }
.contact-details { grid-area: details; }
.contact-form-wrap { grid-area: form; }

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.contact-info-item__value {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,165,90,0.12);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.85rem;
}

.form-notice {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  display: none;
  background: #f0faf4;
  border: 1px solid #a8d5bc;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: #2d7a4f;
  margin-top: 20px;
}

/* --- Email Signup --- */
.signup-section {
  background: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.signup-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.signup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.signup-text h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.signup-text p {
  color: rgba(255,255,255,0.6);
  max-width: 400px;
}

.signup-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  min-width: 360px;
}

.signup-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.signup-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.signup-form input:focus {
  outline: none;
  border-color: var(--accent);
}

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link--dark {
  background: var(--bg-secondary);
  border-color: var(--border);
  color: var(--text-secondary);
}

.social-link--dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* --- Footer --- */
.footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__brand-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__contact-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer__copyright a {
  color: var(--accent);
  opacity: 0.8;
}

/* --- Bio Page Specific --- */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.bio-image {
  position: relative;
}

.bio-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.bio-image__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #e8e0d5 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  flex-direction: column;
  gap: 8px;
  border: 2px dashed var(--border-dark);
}

.bio-image__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  opacity: 0.25;
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.bio-stat {
  background: var(--white);
  padding: 24px 16px;
  text-align: center;
}

.bio-stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.bio-stat__label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bio-content h2 {
  margin-bottom: 20px;
}

.bio-content p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.bio-highlights {
  margin-top: 36px;
  padding: 28px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}

.bio-highlights h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.bio-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bio-highlights ul li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bio-highlights ul li::before {
  content: '♪';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* --- Services Page Specific --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail--reverse .service-detail__image {
  order: 2;
}
.service-detail--reverse .service-detail__content {
  order: 1;
}

.service-detail__image img,
.service-detail__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-detail__image-placeholder {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #e8e0d5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  border: 2px dashed var(--border-dark);
  flex-direction: column;
  gap: 8px;
}

.service-detail__content h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.service-detail__content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-includes {
  margin-bottom: 28px;
}

.service-includes h5 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.service-includes ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-includes ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-includes ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin: 16px 0 4px;
}

.pricing-card__note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card ul li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  stroke: var(--accent);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-light); }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

/* Tag */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "form" "details";
    gap: 40px;
  }
  .bio-grid { grid-template-columns: 1fr; gap: 48px; }
  .bio-image { max-width: 440px; margin: 0 auto; }
  .bio-stats { grid-template-columns: repeat(3, 1fr); }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-detail--reverse .service-detail__image { order: unset; }
  .service-detail--reverse .service-detail__content { order: unset; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .signup-inner { flex-direction: column; }
  .signup-form { min-width: unset; width: 100%; }
  .signup-text { text-align: center; }
  .signup-text p { margin: 0 auto; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { padding: 0 1.25rem; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; max-width: 280px; }

  /* Mobile: condensed copy in, full copy out */
  .show-mobile { display: inline; }
  .show-desktop { display: none; }
  .hide-mobile { display: none !important; }

  /* Mobile hero — face near the top, text pushed below it */
  .hero__bg {
    background-image: url('../images/hero-home-mobile.jpg?v=11');
    background-position: center top;
  }
  .hero { align-items: flex-end; }
  .hero__content {
    transform: none;
    padding-bottom: 16vh;
  }
  .hero__textwrap { padding: 16px 5% 18px; }
  .hero__title-line { white-space: normal; }
  .hero__title {
    font-size: clamp(2.1rem, 8.5vw, 3rem);
    font-weight: 500;
    -webkit-text-stroke-width: 0.6px;
    text-stroke-width: 0.6px;
    margin-bottom: 0.6rem;
  }
  .hero__eyebrow--mid { margin: 0.4rem 0; }
  .hero__subtitle {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 300px;
  }

  /* Compact stats strip on mobile (2x2, smaller) */
  .stats-strip { grid-template-columns: 1fr 1fr !important; }
  .stats-strip > div { padding: 16px 8px !important; }
  .stats-strip > div > div:first-child { font-size: 1.5rem !important; }
  .stats-strip > div > div:last-child { font-size: 0.6rem !important; }

  /* Compact service ("event type") cards on mobile */
  .services-grid { gap: 14px; }
  .service-card { padding: 22px 18px; }
  .service-card__icon {
    width: 46px; height: 46px;
    font-size: 1.2rem; margin-bottom: 12px;
  }
  .service-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .service-card p { font-size: 0.85rem; line-height: 1.55; }
  .service-card .btn { margin-top: 14px !important; padding: 9px 18px; }

  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .event-item { grid-template-columns: 80px 1fr; }
  .event-item > .btn { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .bio-stats { grid-template-columns: 1fr 1fr 1fr; }
  .signup-form { flex-direction: column; }
  .signup-form input { width: 100%; }
}

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