/* =============================================
   CAPTURE HOUSE MEDIA - Real Estate Media Business
   Professional Website Styles
   ============================================= */

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

/* --- Accessibility utility: visually hidden but readable by screen readers --- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- Respect reduced motion preferences --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --gold-dark: #b8913a;
  --cream: #f7f5f0;
  --cream-dark: #ede9e0;
  --charcoal: #1a1a1a;
  --dark: #0d0d0d;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  /* Reset default <button> chrome */
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

/* --- 3D Canvas Section --- */
.canvas-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.canvas-section canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.canvas-overlay-text {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.canvas-overlay-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.canvas-overlay-text p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--sans);
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-radius: 4px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 4px;
}

.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

/* --- Section Headings --- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Services Grid --- */
.services {
  padding: 7rem 0;
  background: var(--cream);
}

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

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--white);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- About / Stats Bar --- */
.stats-bar {
  background: var(--charcoal);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Featured Work Preview --- */
.featured-work {
  padding: 7rem 0;
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  cursor: pointer;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-item:hover img { transform: scale(1.05); }

.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.work-item:hover .work-item-overlay { opacity: 1; }

.work-item-overlay h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.work-item-overlay span {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Testimonial --- */
.testimonial {
  padding: 7rem 0;
  background: var(--cream);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card .quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.testimonial-author span {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* --- Contact Section --- */
.contact {
  padding: 7rem 0;
  background: var(--white);
}

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

.contact-info h3 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}

.contact-detail-text p {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}

.contact-form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 12px;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { width: 100%; justify-content: center; }

/* --- Footer --- */
.footer {
  background: var(--dark);
  padding: 4rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
}

.footer .container { padding: 0 2rem; max-width: 1400px; margin: 0 auto; }

.footer .footer-nap {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 2rem 0;
}

.footer .footer-nap a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer .footer-nap a:hover { color: var(--gold); }

.footer .footer-social {
  justify-content: center;
  margin: 0 0 2.5rem 0;
}

.footer .footer-copy {
  text-align: left;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo { margin-bottom: 1rem; display: inline-block; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a { transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* --- Portfolio Shared --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.9) 0%, rgba(26,26,26,0.7) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

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

/* --- Portfolio Page 1 - Video Showcase --- */
.portfolio-section {
  padding: 5rem 0;
  background: var(--cream);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

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

.video-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.video-card.portrait {
  max-width: 280px;
  justify-self: center;
}

.video-wrapper {
  position: relative;
  background: #000;
  cursor: pointer;
}

.video-wrapper.landscape { aspect-ratio: 16/9; }
.video-wrapper.portrait-ratio { aspect-ratio: 9/16; }

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-pause-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  font-size: 1rem;
  z-index: 5;
}

.play-pause-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.video-card-info {
  padding: 1.25rem;
}

.video-card-info h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.video-card-info span {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Portfolio Page 2 - Cinematic Autoplay --- */
.cinematic-section {
  padding: 5rem 0;
  background: var(--dark);
}

.cinematic-section .section-header h2 { color: var(--white); }
.cinematic-section .section-header p { color: rgba(255,255,255,0.5); }

.cinematic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.cinematic-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.cinematic-item.landscape-item { aspect-ratio: 16/9; }
.cinematic-item.portrait-item { aspect-ratio: 9/16; }
.cinematic-item.square-item { aspect-ratio: 1; }

.cinematic-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.cinematic-item .cinematic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.cinematic-item:hover .cinematic-label { opacity: 1; }

.cinematic-label h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
}

.cinematic-label span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Masonry-style layout for cinematic grid */
.cinematic-masonry {
  columns: 3;
  column-gap: 0.75rem;
}

.cinematic-masonry .cinematic-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cinematic-masonry { columns: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }

  .nav-links.open { right: 0; }
  .hamburger { display: flex; }

  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cinematic-masonry { columns: 1; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card.portrait { max-width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
}

/* ===================== SERVICE LINEUP ===================== */
.section-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-pad {
  padding: 7rem 3rem;
}

.section-center {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.lineup {
  background: #080808;
}

.lineup-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2rem 0 2rem;
  margin-top: 3rem;
}

.lineup-scroll::-webkit-scrollbar { height: 4px; }
.lineup-scroll::-webkit-scrollbar-track { background: transparent; }
.lineup-scroll::-webkit-scrollbar-thumb { background: rgba(212,168,83,0.3); border-radius: 2px; }

a.lineup-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.lineup-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2.2rem 1.8rem;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.lineup-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,168,83,0.35);
  box-shadow: 0 12px 40px rgba(212,168,83,0.08);
}

.lineup-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.lineup-icon svg {
  width: 100%;
  height: 100%;
}

.lineup-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}

.lineup-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lineup-price {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ===================== COMPACT PRICING ===================== */
.compact-pricing-box {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 3.5rem 4.5rem;
}

.cp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4.5rem;
}

.cp-group h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(212,168,83,0.2);
}

.cp-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 1.05rem;
}

.cp-item span:first-child {
  color: rgba(255,255,255,0.6);
}

.cp-item span:last-child {
  color: #fff;
  font-weight: 600;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.cp-item span:last-child .cp-prefix {
  display: inline-block;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.cp-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

@media (max-width: 768px) {
  .cp-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .compact-pricing-box {
    padding: 2rem 1.5rem;
  }
}

/* ===================== PROCESS TIMELINE ===================== */
.process {
  background: #0a0a0a;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 12px rgba(212,168,83,0.35);
}

.timeline-step h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.timeline-step p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* ===================== ANIMATED STATS ===================== */
.stats {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-tagline {
  text-align: center;
  margin-bottom: 2.5rem;
}

.stats-tagline h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  font-weight: 400;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 6rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===================== SCROLL INDICATOR ===================== */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.2rem 0.8rem;
  /* Dark translucent pill guarantees contrast on any background (light or dark) */
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  opacity: 0;
  animation: scrollFadeUp 0.8s ease 1.2s forwards;
}

.scroll-indicator span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  /* Layered shadow = crisp on both light and dark backgrounds */
  text-shadow:
    0 0 4px rgba(0, 0, 0, 0.9),
    0 1px 2px rgba(0, 0, 0, 1);
}

.scroll-line {
  width: 2px;
  height: 42px;
  background: linear-gradient(to bottom, #e9c078 0%, rgba(212, 168, 83, 0.2) 100%);
  /* Strong dual-tone glow keeps the gold bar visible on any background */
  filter:
    drop-shadow(0 0 6px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 3px rgba(233, 192, 120, 0.8));
  border-radius: 2px;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes scrollFadeUp {
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===================== BEFORE & AFTER SLIDER ===================== */
.before-after-section {
  background: #111;
}

.ba-slider-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-image {
  position: absolute;
  inset: 0;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  z-index: 1;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.8);
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  z-index: 4;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.ba-label-before {
  left: 1rem;
}

.ba-label-after {
  right: 1rem;
}

@media (max-width: 600px) {
  .ba-slider-container {
    margin: 2rem 1rem 0;
  }
  .ba-handle-circle {
    width: 36px;
    height: 36px;
  }
  .ba-handle-circle svg {
    width: 18px;
    height: 18px;
  }
}

/* =============================================
   TEST HOME SECTIONS (merged into main)
   ============================================= */

/* ===================== SCROLL HERO ===================== */
.scroll-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.scroll-hero-sticky {
  position: relative;
  height: 100%;
}

.phase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.phase.active {
  opacity: 1;
  pointer-events: auto;
}

.phase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.phase.active .phase-bg {
  transform: scale(1);
}

.phase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}

.phase-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 1100px;
}

.phase-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}

.phase.active .phase-headline {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.2rem 0.8rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  transition: opacity 0.5s;
}

.scroll-hint span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 4px rgba(0, 0, 0, 0.9),
    0 1px 2px rgba(0, 0, 0, 1);
}

.scroll-hint .scroll-line,
.scroll-line {
  width: 2px;
  height: 42px;
  background: linear-gradient(to bottom, #e9c078 0%, rgba(212, 168, 83, 0.2) 100%);
  filter:
    drop-shadow(0 0 6px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 3px rgba(233, 192, 120, 0.8));
  border-radius: 2px;
  animation: line-pulse 2.2s ease-in-out infinite;
}

@keyframes line-pulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ===================== PHILOSOPHY BLOCK ===================== */
.block-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.block-img {
  position: relative;
  overflow: hidden;
}

.block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.block-img:hover img { transform: scale(1.03); }

.block-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  background: #0d0d0d;
}

.block-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.block-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.block-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  font-weight: 300;
  max-width: 460px;
}

/* ===================== CRAFT BLOCK (reversed) ===================== */
.block-craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.block-craft .block-text {
  order: -1;
  background: #111;
}

/* ===================== FULL-BLEED OVERLAY BLOCK ===================== */
.block-fullbleed {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.block-fullbleed-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.block-fullbleed:hover .block-fullbleed-bg {
  transform: scale(1.02);
}

.block-fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}

.block-fullbleed-content {
  position: relative;
  z-index: 2;
  padding: 0 8rem;
  max-width: 700px;
}

.block-fullbleed-content .block-eyebrow { margin-bottom: 1.5rem; }
.block-fullbleed-content .block-heading { font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 1.5rem; }
.block-fullbleed-content .block-body { max-width: 480px; }

.block-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,168,83,0.4);
  padding-bottom: 0.25rem;
  transition: gap 0.3s, border-color 0.3s;
}

.block-cta:hover { gap: 1.1rem; border-color: var(--gold); }

.block-cta-arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.block-cta:hover .block-cta-arrow { transform: translateX(4px); }

/* ===================== STATS ROW ===================== */
.stats-row {
  background: #080808;
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-num span { color: var(--gold); font-size: 2rem; }

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ===================== GALLERY GRID ===================== */
.gallery-section {
  background: #0d0d0d;
  padding: 8rem 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.gallery-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.gallery-header p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #111;
  cursor: pointer;
}

.gallery-cell.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.9);
}

.gallery-cell:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-cell:hover .gallery-cell-overlay {
  background: rgba(0,0,0,0.3);
}

.gallery-cell-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  transition: color 0.4s;
}

.gallery-cell:hover .gallery-cell-label {
  color: rgba(255,255,255,0.8);
}

/* ===================== CONTACT DARK OVERRIDES ===================== */
.contact .section-tag { color: var(--gold); }
.contact .section-header h2 { color: #fff; font-family: var(--serif); }
.contact .section-header p { color: rgba(255,255,255,0.5); }
.contact .contact-info h3 { color: #fff; }
.contact .contact-info > p { color: rgba(255,255,255,0.5); }
.contact .contact-detail-text h4 { color: rgba(255,255,255,0.9); }
.contact .contact-detail-text p { color: rgba(255,255,255,0.45); }
.contact .contact-detail-icon { background: rgba(212,168,83,0.1); border-color: rgba(212,168,83,0.2); }
.contact .contact-detail-icon svg { stroke: var(--gold); }
.contact .contact-form { background: #f7f5f0; }

/* ===================== TESTHOME FOOTER ===================== */
.testhome-footer {
  background: #080808;
  padding: 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Follow block (used inside canvas-section overlay) ===== */
.follow-block {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.follow-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.follow-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.follow-heading em {
  color: var(--gold);
  font-style: italic;
}

.follow-sub {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.follow-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.follow-icons a {
  pointer-events: auto;
}

.follow-icons a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  background: rgba(10,10,10,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.follow-icons a:hover,
.follow-icons a:focus-visible {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  transform: translateY(-3px);
  outline: none;
}

.follow-icons svg {
  width: 24px;
  height: 24px;
}

/* ===== Social Links (footer) ===== */
.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.footer-social a {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(212,168,83,0.45);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  outline: none;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ===================== RESPONSIVE (merged sections) ===================== */
@media (max-width: 900px) {
  .block-philosophy,
  .block-craft { grid-template-columns: 1fr; }
  .block-craft .block-text { order: 0; }
  .block-img { min-height: 50vw; }
  .block-text { padding: 4rem 2.5rem; }
  .block-fullbleed-content { padding: 0 2.5rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .stat { border-right: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-cell.wide { grid-column: span 2; }
}

/* Cross-links for SEO internal linking */
.section-crosslink {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.section-crosslink a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
.section-crosslink a:hover {
  color: #fff;
}

/* Footer NAP */
.footer-nap {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}
.footer-nap a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nap a:hover {
  color: var(--gold);
}
