/* ============================================
   After Six Engraving v3 — Dark & Dramatic
   Bold editorial design, dark foundation,
   gold accents, dramatic typography
   ============================================ */

/* --- Custom Properties --- */
:root {
  --dark: #1A1A1A;
  --dark-alt: #2D2D2D;
  --bg: #1A1A1A;
  --gold: #C4953A;
  --gold-hover: #d4a544;
  --gold-dark: #a87e2e;
  --surface: #2A2A2A;
  --surface-alt: #333333;
  --text: #FFFFFF;
  --text-muted: #E0DBD5;
  --text-dim: rgba(255,255,255,0.55);
  --text-light: #FFFFFF;
  --border: rgba(255,255,255,0.1);

  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1240px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-title--light { color: var(--text-light); }
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn--lg {
  padding: 1.125rem 2.75rem;
  font-size: 1rem;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(196, 149, 58, 0.4);
}
.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border);
}
.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}
.nav--scrolled {
  background: rgba(26,26,26,0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.3);
  padding: 0.75rem 0;
  backdrop-filter: blur(12px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav--scrolled .nav__logo { color: var(--text-light); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav__links a:hover { color: #fff; }
.nav--scrolled .nav__links a { color: rgba(255,255,255,0.7); }
.nav--scrolled .nav__links a:hover { color: #fff; }
.nav__links .btn--gold {
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--text-light);
  transition: all var(--transition);
  border-radius: 2px;
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.active { display: flex; }
.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-light);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.6) 0%,
    rgba(26,26,26,0.7) 50%,
    rgba(26,26,26,0.9) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 0.3s forwards;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 0.5s forwards;
}
.hero__sub {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 0.7s forwards;
}
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 0.9s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeUp 0.8s 1.2s forwards;
}
.hero__scroll span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   TRUST BAR (Stats Strip)
   ============================================ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-bar__item {
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.trust-bar__sub {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .trust-bar__item { border-right: none; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 7rem 0;
  background: var(--bg);
}
.services__header {
  text-align: center;
  margin-bottom: 5rem;
}
.services__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Featured services: alternating image/text */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.service-feature:nth-child(even) .service-feature__image { order: 2; }
.service-feature:nth-child(even) .service-feature__text { order: 1; }

.service-feature__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-feature:hover .service-feature__image img {
  transform: scale(1.03);
}
.service-feature__number {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-feature__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}
.service-feature__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-feature__link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.service-feature__link::after {
  content: '\2192';
  transition: transform var(--transition);
}
.service-feature__link:hover::after {
  transform: translateX(4px);
}

/* Remaining services grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.service-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border-radius: 4px;
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: var(--gold);
}
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.service-card__icon svg {
  stroke: var(--gold);
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .service-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-feature:nth-child(even) .service-feature__image { order: 1; }
  .service-feature:nth-child(even) .service-feature__text { order: 2; }
}
@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ============================================
   FEATURED WORK / GALLERY PREVIEW
   ============================================ */
.gallery-preview {
  padding: 7rem 0;
  background: var(--dark-alt);
}
.gallery-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.gallery-preview__header .section-subtitle { margin-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}
.gallery-grid__item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}
.gallery-grid__item--featured { grid-row: span 2; }
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid__item:hover img { transform: scale(1.05); }

/* SVG showcase for design catalog items */
.gallery-grid__svg-showcase {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--surface);
}
.gallery-grid__svg-showcase img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: invert(1) brightness(0.85);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-grid__item:hover .gallery-grid__svg-showcase img {
  transform: scale(1.08);
  filter: invert(1) brightness(1) drop-shadow(0 0 12px rgba(196,149,58,0.3));
}

.gallery-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-grid__item:hover .gallery-grid__overlay { opacity: 1; }
.gallery-grid__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.gallery-grid__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-light);
}
.gallery-preview__cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-preview__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
}

/* ============================================
   PROCESS (How It Works)
   ============================================ */
.process {
  padding: 7rem 0;
  background: var(--surface);
}
.process__header {
  text-align: center;
  margin-bottom: 4rem;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process__step {
  text-align: center;
  position: relative;
}
.process__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}
.process__step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.process__step-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
}
/* Connector line between steps */
.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: -1rem;
  width: 2rem;
  height: 1px;
  background: var(--border);
}

@media (max-width: 768px) {
  .process__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process__step::after { display: none; }
}
@media (max-width: 480px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHO WE SERVE
   ============================================ */
.serve {
  padding: 6rem 0;
  text-align: center;
  background: var(--bg);
}
.serve__header { margin-bottom: 3rem; }
.serve__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}
.serve__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  transition: all var(--transition);
}
.serve__pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196,149,58,0.15);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 7rem 0;
  background: var(--dark-alt);
}
.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.testimonial-card__quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}
.testimonial-card__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card__author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}
.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-dim);
}

@media (max-width: 968px) {
  .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 7rem 0;
  background: var(--bg);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__text .eyebrow { margin-bottom: 1rem; }
.about__text .section-title { margin-bottom: 1.5rem; }
.about__text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about__pullquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--gold);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__image { max-height: 400px; }
}

/* ============================================
   CONTACT / QUOTE FORM
   ============================================ */
.contact {
  padding: 7rem 0;
  background: var(--surface);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact__info .eyebrow { margin-bottom: 1rem; }
.contact__info .section-title { color: var(--text-light); margin-bottom: 1.5rem; }
.contact__desc {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact__details { list-style: none; }
.contact__details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}
.contact__details li strong { color: var(--text-light); }
.contact__details-icon {
  color: var(--gold);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact__tagline {
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  color: var(--text-light);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select option { background: var(--dark); color: var(--text-light); }
.form-field input[type="file"] {
  padding: 0.75rem 1rem;
  cursor: pointer;
}
.form-field input[type="file"]::file-selector-button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-right: 0.75rem;
}
.ohnohoney { display: none !important; }

@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact__form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand .nav__logo {
  margin-bottom: 1rem;
  display: inline-block;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 300px;
}
.footer__col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer__socials {
  display: flex;
  gap: 1.25rem;
}
.footer__socials a {
  color: rgba(255,255,255,0.35);
  font-size: 1.125rem;
  transition: color var(--transition);
}
.footer__socials a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================
   GALLERY PAGE — gallery.html
   ============================================ */
.gallery-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}
.gallery-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.gallery-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.75);
}
.gallery-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.gallery-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.gallery-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-dim);
}

/* Filter Bar */
.gallery-filters {
  padding: 2.5rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.gallery-filters__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}
.filter-btn {
  padding: 0.5625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

/* Masonry Gallery */
.gallery-full {
  padding: 3rem 0 6rem;
  background: var(--bg);
}
.masonry {
  column-count: 3;
  column-gap: 1rem;
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}
.masonry__item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.masonry__item:hover img { transform: scale(1.04); }

/* SVG items in gallery masonry */
.masonry__svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  min-height: 250px;
  background: var(--surface);
}
.masonry__svg-wrap img {
  max-width: 85%;
  max-height: 200px;
  object-fit: contain;
  filter: invert(1) brightness(0.85);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.masonry__item:hover .masonry__svg-wrap img {
  transform: scale(1.06);
  filter: invert(1) brightness(1) drop-shadow(0 0 10px rgba(196,149,58,0.25));
}

.masonry__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry__item:hover .masonry__overlay { opacity: 1; }
.masonry__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.masonry__material {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.masonry__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 968px) {
  .masonry { column-count: 2; }
}
@media (max-width: 480px) {
  .masonry { column-count: 1; }
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
}
.lightbox__close:hover { color: #fff; }
.lightbox__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
}
.lightbox__image {
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}
.lightbox__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 80vh;
}
/* Invert SVGs in lightbox too */
.lightbox__image img[src$=".svg"] {
  filter: invert(1) brightness(0.9);
  padding: 2rem;
}
.lightbox__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-light);
}
.lightbox__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.lightbox__desc {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.lightbox__meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .lightbox__inner {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
}

/* ============================================
   GALLERY CARD GRID (dynamic gallery.html)
   ============================================ */
.gallery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.gallery-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f3ef;
  border: 2px solid transparent;
  transition: all var(--transition);
  animation: cardFadeIn 0.4s ease both;
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.gallery-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(196, 149, 58, 0.35), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}
.gallery-card__image {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #f5f3ef;
}
.gallery-card__image img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-card__image img {
  transform: scale(1.06);
}
.gallery-card__info {
  padding: 0.75rem 1rem 1rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.gallery-card__name {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-card__hover {
  opacity: 1;
}
.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

/* Gallery empty state (Maps coming soon, etc.) */
.gallery-empty {
  padding: 5rem 2rem;
  text-align: center;
}
.gallery-empty__content {
  max-width: 480px;
  margin: 0 auto;
}
.gallery-empty__icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.gallery-empty__content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.gallery-empty__content p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Filter button — coming soon variant */
.filter-btn--coming-soon {
  position: relative;
}
.filter-btn--coming-soon::after {
  content: 'soon';
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  position: absolute;
  top: -6px;
  right: -4px;
}

@media (max-width: 768px) {
  .gallery-cards {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
  }
  .gallery-card__image { padding: 1rem; }
}

/* ============================================
   LASER ENGRAVED MAPS SECTION
   ============================================ */
.maps-section {
  padding: 7rem 0;
  background: var(--surface);
}
.maps-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.maps-section__eyebrow {
  margin-bottom: 1.25rem;
}
.maps-section__desc {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-top: 1rem;
}
.maps-placeholder {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}
.maps-placeholder__svg {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

@media (max-width: 968px) {
  .maps-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .maps-placeholder {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   PRODUCTS WE ENGRAVE — Section & Cards
   ============================================ */
.products-section {
  padding: 7rem 0;
  background: var(--dark-alt);
}
.products-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.products-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.05);
}
/* CSS placeholder for products without photos */
.product-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.product-card__placeholder span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  opacity: 0.85;
}
.product-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}
.product-card__desc {
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.product-card__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.product-card__cta:hover {
  color: var(--gold);
}

@media (max-width: 968px) {
  .products-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .products-section__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================
   PRODUCTS PAGE — Full Catalog
   ============================================ */
.products-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  overflow: hidden;
}
.products-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.products-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.4), rgba(26,26,26,0.9));
}
.products-hero__content {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem 4rem;
}
.products-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.products-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.products-intro {
  padding: 4rem 0 2rem;
  text-align: center;
}
.products-intro p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.products-catalog {
  padding: 2rem 0 6rem;
}
.products-catalog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.catalog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.catalog-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(196,149,58,0.12);
}
.catalog-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}
.catalog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.catalog-card:hover .catalog-card__image img {
  transform: scale(1.03);
}
.catalog-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.catalog-card__placeholder span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.85;
}
.catalog-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.catalog-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.catalog-card__material {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.catalog-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.catalog-card__note {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.products-bottom-cta {
  padding: 5rem 0;
  text-align: center;
  background: var(--surface);
}
.products-bottom-cta p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .products-catalog__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
