/* ============================================================
   ORA Pilates & Yoga — styles.css
   ============================================================ */

/* 1. Reset & Custom Properties
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #5A0E0E;   /* deep burgundy — logo background */
  --bg-alt:      #3D0808;   /* darkest near-black burgundy */
  --accent:      #8B1A1A;   /* primary crimson/burgundy brand color */
  --highlight:   #C9A96E;   /* gold/champagne from logo border circle */
  --cream:       #F7F2E8;   /* warm ivory/cream */
  --cream-dim:   rgba(247,242,232,0.65);
  --accent-dim:  rgba(139,26,26,0.14);
  --border:      rgba(201,169,110,0.28);
  --ff-display:  'Bodoni Moda', Georgia, serif;
  --ff-body:     'Roboto', Arial, sans-serif;

  --nav-h: 76px;
  --radius: 4px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 2. Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
p  { font-size: 1rem; }

.section-label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight);
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  margin-bottom: 0.8rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* 3. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--highlight);
  color: var(--bg-alt);
  border-color: var(--highlight);
}
.btn-primary:hover {
  background: #d4b97a;
  border-color: #d4b97a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247,242,232,0.5);
}
.btn-ghost:hover {
  background: rgba(247,242,232,0.08);
  border-color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--highlight);
  border-color: var(--highlight);
}
.btn-outline:hover {
  background: var(--highlight);
  color: var(--bg-alt);
}

/* 4. Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--bg-alt);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--highlight);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  margin-left: 1.5rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: 1rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-alt);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: var(--nav-h);
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--cream);
}
.nav-overlay a:hover { color: var(--highlight); }

/* 5. Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,8,8,0.88) 0%,
    rgba(90,14,14,0.72) 50%,
    rgba(40,5,5,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 760px;
  padding-top: var(--nav-h);
}
.hero-subtitle {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--cream-dim);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream-dim);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* 6. Features Strip
   ============================================================ */
.features-strip {
  background: var(--bg-alt);
  padding: 4rem 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-item h4 {
  font-size: 1rem;
  color: var(--cream);
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--cream-dim);
}

/* 7. Services Grid (Home)
   ============================================================ */
.services-preview {
  padding: 5rem 5%;
}
.services-preview-header {
  text-align: center;
  margin-bottom: 3rem;
}
.services-grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.service-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-tile:hover img { transform: scale(1.06); }
.service-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,8,8,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-tile:hover .service-tile-overlay { opacity: 1; }
.service-tile-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
}
.service-tile-cat {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--highlight);
}
.services-preview-footer {
  text-align: center;
}

/* 8. Brand Teaser Split
   ============================================================ */
.brand-teaser {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.brand-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.brand-teaser-img {
  position: relative;
}
.brand-teaser-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}
.brand-teaser-img::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}
.brand-teaser-text p {
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

/* 9. Stats Row
   ============================================================ */
.stats-row {
  padding: 4rem 5%;
  background: var(--accent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* 10. Review Cards
   ============================================================ */
.reviews {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars {
  display: flex;
  gap: 3px;
  color: var(--highlight);
}
.review-stars svg { width: 16px; height: 16px; }
.review-quote {
  font-size: 0.97rem;
  color: var(--cream-dim);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-quote::before { content: '\201C'; }
.review-quote::after  { content: '\201D'; }
.review-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
}
.review-city {
  font-size: 0.8rem;
  color: var(--highlight);
  letter-spacing: 0.1em;
}

/* 11. Social CTA + platform buttons
   ============================================================ */
.social-cta {
  padding: 4.5rem 5%;
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border);
}
.social-cta h2 { margin-bottom: 0.8rem; }
.social-cta p {
  color: var(--cream-dim);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.social-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn-ig {
  background: linear-gradient(135deg,#405de6,#5851db,#833ab4,#c13584,#e1306c,#fd1d1d);
  color: white;
}
.social-btn-ig:hover { opacity: 0.88; transform: translateY(-2px); }
.social-btn-fb {
  background: #1877f2;
  color: white;
}
.social-btn-fb:hover { background: #166fe5; transform: translateY(-2px); }
.social-btn-wa {
  background: #25d366;
  color: white;
}
.social-btn-wa:hover { background: #20bc5a; transform: translateY(-2px); }

/* 12. Social Feed Grid
   ============================================================ */
.social-feed {
  padding: 5rem 5%;
  background: var(--dark);
}
.social-feed-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.feed-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.9);
}
.feed-item:hover img { transform: scale(1.06); filter: brightness(1); }

/* 13. Footer
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-col-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-logo-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.92rem;
  color: var(--cream-dim);
  margin-bottom: 1.4rem;
  max-width: 260px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 0.7rem;
}
.footer-social-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: all var(--transition);
}
.footer-social-icon svg { width: 16px; height: 16px; }
.footer-social-icon:hover {
  border-color: var(--highlight);
  color: var(--highlight);
  background: var(--accent-dim);
}
.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.2rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  font-size: 0.9rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.footer-contact-item svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--highlight);
}
.footer-contact-item a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--cream-dim);
}
.footer-badges {
  display: flex;
  gap: 1rem;
}
.footer-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}

/* 14. Page Hero (inner pages)
   ============================================================ */
.page-hero {
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 4rem;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40,5,5,0.92) 0%, rgba(61,8,8,0.55) 60%, rgba(61,8,8,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 700px;
}
.page-hero-content h1 { color: var(--cream); margin-bottom: 0.6rem; }
.page-hero-content p {
  color: var(--cream-dim);
  font-size: 1.1rem;
}

/* 15. About Page
   ============================================================ */
.about-origin {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.about-origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-origin-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-origin-text p {
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.philosophy-section {
  padding: 5rem 5%;
  background: var(--dark);
}
.philosophy-section > .text-center { margin-bottom: 3rem; }
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.philosophy-card .feature-icon {
  margin-bottom: 1rem;
}
.philosophy-card h4 {
  margin-bottom: 0.6rem;
  color: var(--cream);
}
.philosophy-card p {
  font-size: 0.92rem;
  color: var(--cream-dim);
}

.values-section {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.values-section > .text-center { margin-bottom: 3rem; }
.values-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.value-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--highlight);
  opacity: 0.6;
  line-height: 1;
}
.value-item h4 {
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.value-item p {
  font-size: 0.92rem;
  color: var(--cream-dim);
}

.timeline-section {
  padding: 5rem 5%;
  background: var(--dark);
}
.timeline-section > .text-center { margin-bottom: 3rem; }
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--highlight), transparent);
}
.timeline-entry {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}
.timeline-entry::before {
  content: '';
  position: absolute;
  left: -6px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--highlight);
  border: 2px solid var(--dark);
}
.timeline-date {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.3rem;
}
.timeline-entry h4 {
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.timeline-entry p {
  font-size: 0.92rem;
  color: var(--cream-dim);
}

.about-cta-split {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-cta-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-cta-text p {
  color: var(--cream-dim);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* 16. Services Page
   ============================================================ */
.disclaimer-bar {
  background: var(--accent);
  padding: 0.8rem 5%;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.disclaimer-bar p {
  font-size: 0.85rem;
  color: var(--cream-dim);
}
.disclaimer-bar a {
  color: var(--highlight);
  text-decoration: underline;
}

.category-tiles-section {
  padding: 4rem 5%;
  background: var(--bg-alt);
}
.category-tiles-section > .text-center { margin-bottom: 2.5rem; }
.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  display: block;
}
.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-tile:hover img { transform: scale(1.06); }
.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40,5,5,0.9) 0%, rgba(61,8,8,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.category-tile-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.category-tile-count {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
}

.services-categories {
  padding: 5rem 5%;
  background: var(--dark);
}
.services-category-section {
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.services-category-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.category-heading-row {
  margin-bottom: 1.5rem;
}
.category-heading-row h2 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.category-heading-row p {
  color: var(--cream-dim);
  font-size: 1rem;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-item {
  padding: 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--highlight);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.service-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 1rem;
}
.service-item h4 { color: var(--cream); }
.service-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: var(--highlight);
  color: var(--bg-alt);
  white-space: nowrap;
  flex-shrink: 0;
}
.service-badge-new {
  background: #4CAF50;
  color: white;
}
.service-badge-popular {
  background: var(--highlight);
  color: var(--bg-alt);
}
.service-item p {
  font-size: 0.93rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

.services-bottom-cta {
  padding: 4rem 5%;
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border);
}
.services-bottom-cta h2 { margin-bottom: 0.8rem; }
.services-bottom-cta p {
  color: var(--cream-dim);
  margin-bottom: 2rem;
}

/* 17. Gallery Page + Lightbox
   ============================================================ */
.gallery-filter-bar {
  background: var(--bg-alt);
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.filter-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  background: transparent;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--highlight);
  color: var(--bg-alt);
  border-color: var(--highlight);
  font-weight: 600;
}

.gallery-section {
  padding: 4rem 5%;
  background: var(--dark);
}
.gallery-section-title {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.masonry-grid {
  columns: 4;
  column-gap: 12px;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.88);
}
.masonry-item:hover img { transform: scale(1.04); filter: brightness(1); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,4,4,0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: fixed;
  top: 1.2rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 2010;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--highlight); }
.lightbox-close svg { width: 28px; height: 28px; }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(61,8,8,0.7);
  border: 1px solid var(--border);
  color: var(--cream);
  cursor: pointer;
  padding: 0.8rem;
  border-radius: var(--radius);
  z-index: 2010;
  transition: all var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  color: var(--highlight);
}
.lightbox-prev svg, .lightbox-next svg { width: 24px; height: 24px; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
  background: rgba(40,5,5,0.7);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  z-index: 2010;
}

.gallery-cta-section {
  padding: 4rem 5%;
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border);
}
.gallery-cta-section h2 { margin-bottom: 0.8rem; }
.gallery-cta-section p { color: var(--cream-dim); margin-bottom: 2rem; }
.gallery-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 18. Contact Page
   ============================================================ */
.contact-section {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info-title {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.5rem;
  margin-top: 1.8rem;
}
.contact-info-title:first-child { margin-top: 0; }
.contact-info-val {
  color: var(--cream-dim);
  font-size: 0.93rem;
  line-height: 1.6;
}
.contact-info-val a:hover { color: var(--cream); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.hours-table tr {
  border-bottom: 1px solid var(--border);
}
.hours-table td { padding: 0.45rem 0; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; }
.contact-form-box {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form-box h3 {
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--cream-dim);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--highlight);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53935;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg-alt); }
#formSuccess {
  display: none;
  text-align: center;
  padding: 2rem;
}
#formSuccess svg { width: 56px; height: 56px; color: #4CAF50; margin: 0 auto 1rem; }
#formSuccess h4 { color: var(--cream); margin-bottom: 0.5rem; }
#formSuccess p { color: var(--cream-dim); font-size: 0.92rem; }

.map-section {
  padding: 4rem 5%;
  background: var(--dark);
}
.map-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-top: 2rem;
}
.map-placeholder svg {
  width: 48px; height: 48px;
  color: var(--highlight);
}
.map-placeholder p { color: var(--cream-dim); font-size: 0.92rem; }

/* 19. FAQ Accordion
   ============================================================ */
.faq-section {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.faq-section > .text-center { margin-bottom: 3rem; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.97rem;
  font-weight: 600;
}
.faq-question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--highlight);
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--cream-dim);
  padding-bottom: 1.2rem;
  line-height: 1.7;
}

.contact-social-section {
  padding: 3.5rem 5%;
  background: var(--dark);
  text-align: center;
  border-top: 1px solid var(--border);
}
.contact-social-section h2 { margin-bottom: 0.8rem; }
.contact-social-section p { color: var(--cream-dim); margin-bottom: 1.8rem; }

/* 20. Scroll-to-Top
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--accent);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--highlight);
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--bg-alt);
  transform: translateY(-3px);
}
.scroll-top svg { width: 20px; height: 20px; }

/* 21. Fade-in Animation
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* 22. Responsive
   ============================================================ */

/* 1024px */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid .feature-item:nth-child(4),
  .features-grid .feature-item:nth-child(5) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .brand-teaser-inner { gap: 2.5rem; }
  .about-origin-inner { gap: 2.5rem; }
  .contact-inner { gap: 2.5rem; }
}

/* 768px */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-9 { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-inner { grid-template-columns: 1fr; }
  .brand-teaser-img::before { display: none; }
  .brand-teaser-img img { height: 320px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tagline { max-width: 100%; }

  .about-origin-inner { grid-template-columns: 1fr; }
  .about-origin-img img { height: 260px; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .category-tiles-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .about-cta-inner { grid-template-columns: 1fr; }
  .about-cta-img img { height: 280px; }
  .masonry-grid { columns: 2; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* 480px */
@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .hero-content { padding: 0 5%; padding-top: var(--nav-h); }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid-9 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .category-tiles-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .filter-btns { gap: 0.4rem; }
  .filter-btn { font-size: 0.78rem; padding: 0.4rem 0.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
