/*
Theme Name: Kyokushin NC
Theme URI: https://kyokushinnc.com
Author: Kyokushin Karate North Carolina
Author URI: https://kyokushinnc.com
Description: Official theme for IKO Kyokushinkaikan North Carolina Branch Dojo
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kyokushin-nc
Tags: martial-arts, karate, dojo
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-ink:       #0d0d0d;
  --color-paper:     #f5f0e8;
  --color-rice:      #faf8f3;
  --color-red:       #c0392b;
  --color-red-deep:  #8b1a1a;
  --color-red-light: #e74c3c;
  --color-gold:      #c9a84c;
  --color-gold-pale: #f0dfa0;
  --color-ash:       #4a4a4a;
  --color-mist:      #d4cfc4;
  --color-slate:     #2c2c2c;

  --font-display: 'Noto Serif JP', 'Times New Roman', serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-ui:      'Raleway', sans-serif;

  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.25);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--color-rice);
  color: var(--color-ink);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--color-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-red-deep); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-slate);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-red);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--color-red);
  flex: 1;
}
.section-label::before { max-width: 2rem; }
.section-label::after  { max-width: 100%; }

.section-heading {
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--color-ash);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--color-red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-red-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: #fff;
  color: var(--color-red);
}
.btn-gold {
  background: var(--color-gold);
  color: var(--color-ink);
}
.btn-gold:hover {
  background: #b8923e;
  color: var(--color-ink);
  transform: translateY(-1px);
}

/* ============================================================
   HORIZONTAL RULE DECORATIVE
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem auto;
  max-width: 300px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-mist);
}
.divider-kanku {
  width: 28px;
  height: 28px;
  opacity: 0.35;
}

/* ============================================================
   SITE HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(192,57,43,0.3);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.site-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.logo-sub {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.primary-nav ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.primary-nav a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-red);
  transition: width var(--transition);
}
.primary-nav a:hover {
  color: #fff;
}
.primary-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-red);
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--color-red-deep) !important;
  color: #fff !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,13,13,0.75) 0%,
    rgba(13,13,13,0.5) 50%,
    rgba(13,13,13,0.2) 100%
  );
}

/* Vertical Japanese text accent */
.hero-kanji {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  letter-spacing: 0.15em;
  user-select: none;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 72px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--color-gold);
}

.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  max-width: 680px;
}
.hero-title em {
  font-style: normal;
  color: var(--color-red-light);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.4rem;
  max-width: 500px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* Slide indicators */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--color-red);
  transform: scale(1.4);
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--color-ink);
  color: #fff;
  padding: 3rem 2rem;
}
.intro-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-red-light);
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mist);
}
.intro-strip-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 7rem 0;
  background: var(--color-rice);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  padding-bottom: 3rem;
  padding-right: 3rem;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  border: 5px solid var(--color-rice);
  box-shadow: var(--shadow-md);
  display: block;
}
.about-kanku-bg {
  position: absolute;
  top: -3rem;
  left: -3rem;
  width: 200px;
  height: 200px;
  opacity: 0.04;
  pointer-events: none;
}

.about-text .section-label { justify-content: flex-start; }
.about-text .section-label::before { display: none; }

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p   { color: var(--color-ash); font-size: 1.05rem; }

.about-philosophy {
  margin-top: 2rem;
  padding: 1.5rem 1.8rem;
  border-left: 3px solid var(--color-red);
  background: var(--color-paper);
}
.about-philosophy p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--color-slate);
  margin: 0;
}
.about-philosophy cite {
  display: block;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-top: 0.6rem;
}

/* ============================================================
   CLASSES SECTION
   ============================================================ */
.classes-section {
  padding: 7rem 0;
  background: var(--color-paper);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.class-card {
  background: var(--color-rice);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--color-red);
}
.class-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.class-card-header {
  padding: 1.5rem 1.5rem 0.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.class-badge {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 1px;
  background: var(--color-red);
  color: #fff;
  white-space: nowrap;
}
.class-badge.beginner { background: #2e7d32; }
.class-badge.intermediate { background: #1565c0; }
.class-badge.advanced { background: var(--color-red-deep); }
.class-badge.all-levels { background: var(--color-gold); color: var(--color-ink); }
.class-badge.youth { background: #6a1b9a; }

.class-card h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }

.class-card-body { padding: 0 1.5rem 1.5rem; }
.class-card-body p { color: var(--color-ash); font-size: 0.93rem; margin-bottom: 1rem; }

.class-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.class-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--color-ash);
}
.class-meta-icon {
  width: 14px;
  height: 14px;
  fill: var(--color-red);
  flex-shrink: 0;
}

/* ============================================================
   INSTRUCTORS SECTION
   ============================================================ */
.instructors-section {
  padding: 7rem 0;
  background: var(--color-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.instructors-section::before {
  content: '極真';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 22rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
}

.instructors-section .section-label { color: var(--color-gold); }
.instructors-section .section-label::before,
.instructors-section .section-label::after { background: var(--color-gold); }
.instructors-section .section-heading { color: #fff; }
.instructors-section .section-sub { color: rgba(255,255,255,0.55); }

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.instructor-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.instructor-card:hover {
  border-color: rgba(192,57,43,0.5);
  box-shadow: 0 8px 32px rgba(192,57,43,0.2);
}
.instructor-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.instructor-card:hover .instructor-photo { filter: grayscale(0%); }

.instructor-info {
  padding: 1.5rem;
}
.instructor-rank {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}
.instructor-info h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.instructor-info p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 7rem 0;
  background: var(--color-rice);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.gallery-item.wide   { grid-column: span 2; }
.gallery-item.tall   { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(192,57,43,0.25);
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  padding: 7rem 0;
  background: var(--color-paper);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 820px;
  margin: 0 auto;
}

.event-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--color-rice);
  padding: 1.5rem;
  border-radius: 2px;
  border-left: 3px solid var(--color-red);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-red);
  color: #fff;
  padding: 0.6rem;
  border-radius: 2px;
}
.event-month {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.event-day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.event-info h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.event-info p  { color: var(--color-ash); font-size: 0.88rem; margin: 0; }
.event-tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 1px;
  border: 1px solid var(--color-mist);
  color: var(--color-ash);
  white-space: nowrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 7rem 0;
  background: var(--color-ink);
  color: #fff;
}
.contact-section .section-label { color: var(--color-gold); }
.contact-section .section-label::before,
.contact-section .section-label::after { background: var(--color-gold); }
.contact-section .section-heading { color: #fff; }
.contact-section .section-sub { color: rgba(255,255,255,0.55); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 1.8rem; }

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(192,57,43,0.18);
  border: 1px solid rgba(192,57,43,0.35);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap svg { width: 20px; height: 20px; fill: var(--color-red-light); }
.contact-item-text { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-item-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.contact-item-value {
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
  margin: 0;
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-red);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050505;
  color: rgba(255,255,255,0.5);
  padding: 3.5rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand .site-logo img { width: 40px; height: 40px; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.footer-bottom a { color: var(--color-red); }

/* ============================================================
   INNER PAGE: ABOUT
   ============================================================ */
.page-hero {
  position: relative;
  height: 42vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 3.5rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.4);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-hero-content .section-label { color: var(--color-gold); margin-bottom: 0.5rem; }
.page-hero-content .section-label::before { display: none; }
.page-hero-content .section-label::after { background: var(--color-gold); }
.page-hero-content h1 { color: #fff; }

.breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.6rem;
}
.breadcrumb a { color: var(--color-gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .primary-nav.open {
    display: flex;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(13,13,13,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .primary-nav.open ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .primary-nav.open a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }

  .intro-strip .container { grid-template-columns: 1fr; gap: 1.5rem; }
  .intro-strip-divider { display: none; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }

  .event-item { grid-template-columns: 60px 1fr; }
  .event-tag { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}
