/* ============================================================
   SOFA ART UPHOLSTERY - Brand Design System
   Colors: Charcoal #1E1E1E | Cream #F3EFE6 | Brass #B89C6D
   Fonts: Cinzel (headings) + Montserrat (body)
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --charcoal: #1E1E1E;
  --charcoal-deep: #141414;
  --charcoal-light: #2A2A2A;
  --cream: #F3EFE6;
  --cream-light: #FAF8F5;
  --cream-dark: #E8E2D6;
  --brass: #B89C6D;
  --brass-light: #D4BC8E;
  --brass-dark: #9A7F54;
  --text-dark: #1E1E1E;
  --text-light: #F3EFE6;
  --text-muted: #8A8A8A;
  --text-muted-light: #B0A99F;
  --white: #FFFFFF;
  --overlay: rgba(20, 20, 20, 0.7);
  --overlay-heavy: rgba(20, 20, 20, 0.85);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --section-padding: 100px 0;
  --section-padding-mobile: 60px 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: 0.03em;
}

h4 {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.text-light h1, .text-light h2, .text-light h3,
.text-light h4, .text-light p {
  color: var(--cream);
}

.text-light p {
  color: var(--text-muted-light);
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
  display: block;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--brass);
  margin: 1.5rem 0;
}

.section-divider.center {
  margin: 1.5rem auto;
}

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

.container-narrow {
  max-width: 900px;
}

.section {
  padding: var(--section-padding);
}

.section-dark {
  background-color: var(--charcoal);
  color: var(--cream);
}

.section-cream {
  background-color: var(--cream);
}

.section-light {
  background-color: var(--cream-light);
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline:hover {
  background-color: var(--cream);
  color: var(--charcoal);
}

.btn-dark {
  background-color: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background-color: var(--brass);
  border-color: var(--brass);
  color: var(--white);
}

.btn-brass {
  background-color: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}

.btn-brass:hover {
  background-color: var(--brass-dark);
  border-color: var(--brass-dark);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background-color: var(--charcoal);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}

.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-transform: uppercase;
}

.logo-line {
  width: 100%;
  height: 1px;
  background-color: var(--brass);
  margin: 4px 0;
}

.logo-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--cream);
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brass);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
}

.nav-phone:hover {
  color: var(--brass);
}

.nav-cta {
  font-size: 0.7rem;
  padding: 12px 28px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--cream);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--charcoal-deep);
  overflow: hidden;
}

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

.hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,20,0.9) 0%, rgba(20,20,20,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 120px;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted-light);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero .btn-group {
  margin-bottom: 2.5rem;
}

/* Page Hero (smaller for inner pages) */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background-color: var(--charcoal-deep);
  overflow: hidden;
}

.page-hero .hero-bg {
  opacity: 0.2;
}

.page-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(20,20,20,0.85) 0%, rgba(20,20,20,0.6) 100%);
}

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

.page-hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-muted-light);
  font-size: 1.05rem;
  max-width: 600px;
}

/* --- Trust Strip --- */
.trust-strip {
  background-color: var(--cream);
  padding: 30px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  text-transform: uppercase;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--brass);
  flex-shrink: 0;
}

/* --- Service Cards --- */
.service-card {
  background: var(--white);
  padding: 48px 36px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.service-card-icon {
  width: 48px;
  height: 48px;
  color: var(--brass);
  margin-bottom: 24px;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.service-card .card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card .card-link:hover {
  color: var(--charcoal);
}

.service-card .card-link svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.service-card .card-link:hover svg {
  transform: translateX(4px);
}

/* --- Process Section --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brass);
  opacity: 0.4;
  display: block;
  margin-bottom: 20px;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 60%;
  transform: translateY(-50%);
  background: rgba(243, 239, 230, 0.1);
}

.process-step:last-child::after {
  display: none;
}

.process-step h4 {
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  margin-bottom: 0;
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.portfolio-overlay h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 4px;
}

.portfolio-overlay p {
  color: var(--brass);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: none;
  border: 1px solid var(--cream-dark);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

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

/* --- Stats Section --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 48px 24px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 50%;
  transform: translateY(-50%);
  background: rgba(243, 239, 230, 0.15);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brass);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted-light);
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--cream-dark);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  color: var(--brass);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.testimonial-source {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- About / Two Column --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-image {
  position: relative;
  overflow: hidden;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brass);
  z-index: -1;
}

.two-col-content h2 {
  margin-bottom: 8px;
}

.two-col-content .section-divider {
  margin-bottom: 24px;
}

.two-col-content p {
  margin-bottom: 1.2rem;
}

/* --- FAQ Section --- */
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--brass);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-answer p {
  padding-top: 16px;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--cream-dark);
}

.form-group {
  margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brass);
  background: var(--white);
}

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

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

/* --- Map --- */
.map-container {
  width: 100%;
  height: 400px;
  margin-top: 60px;
  filter: grayscale(0.8) contrast(1.1);
  transition: var(--transition);
}

.map-container:hover {
  filter: grayscale(0) contrast(1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Footer --- */
.footer {
  background-color: var(--charcoal-deep);
  color: var(--cream);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(243, 239, 230, 0.08);
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.7;
}

.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted-light);
  padding: 6px 0;
}

.footer-links a:hover {
  color: var(--brass);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 239, 230, 0.15);
  color: var(--cream);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--brass);
  border-color: var(--brass);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

/* --- CTA Banner --- */
.cta-banner {
  background-color: var(--charcoal);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184, 156, 109, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-banner .cta-phone {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--brass);
  margin-top: 24px;
  letter-spacing: 0.05em;
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--brass);
  border-color: var(--brass);
}

/* --- Services Detail Page --- */
.service-detail {
  padding: 80px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail-grid:nth-child(even) {
  direction: rtl;
}

.service-detail-grid:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-detail-image:hover img {
  transform: scale(1.03);
}

.service-detail-content h3 {
  margin-bottom: 8px;
}

.service-detail-content .section-divider {
  margin-bottom: 20px;
}

.service-detail-content ul {
  margin: 16px 0;
}

.service-detail-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 1px;
  background-color: var(--brass);
}

/* --- About Page Values --- */
.value-card {
  text-align: center;
  padding: 48px 32px;
}

.value-card svg {
  width: 40px;
  height: 40px;
  color: var(--brass);
  margin-bottom: 24px;
}

.value-card h3 {
  margin-bottom: 12px;
  color: var(--cream);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:nth-child(3)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .two-col {
    gap: 40px;
  }

  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  /* Mobile Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--charcoal-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 0;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(243, 239, 230, 0.06);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  /* Mobile Layout */
  .hero-content {
    padding-top: 140px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    text-align: center;
  }

  .trust-items {
    gap: 20px;
  }

  .trust-item {
    font-size: 0.72rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col-image::after {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item::after {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail-grid:nth-child(even) {
    direction: ltr;
  }

  .cta-banner .cta-phone {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .trust-items {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================================
   NEW BRAND SYSTEM ADDITIONS
   Cormorant Garamond (display) + Cinzel (monogram) + Montserrat (body)
   Hero video, Before/After slider, image service cards, SA monogram
   ============================================================ */

/* Display headings switch to Cormorant Garamond per brand kit;
   Cinzel reserved for the SA monogram and small caps lockups. */
h1, h2 {
  font-family: 'Cormorant Garamond', 'Cinzel', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: none;
}
h1 { font-weight: 600; }
h2 { font-weight: 600; }
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
}

/* --- Logo (single image, complete lockup) --- */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s var(--transition);
}
.logo:hover { opacity: 0.85; }
.logo-img {
  display: block;
  width: auto;
  height: 60px;
  max-width: 100%;
}

/* NAV sizing */
.nav .logo-img { height: 96px; }
.nav.scrolled .logo-img { height: 70px; }
@media (max-width: 1100px) {
  .nav .logo-img { height: 80px; }
  .nav.scrolled .logo-img { height: 62px; }
}
@media (max-width: 900px) {
  .nav .logo-img { height: 68px; }
  .nav.scrolled .logo-img { height: 54px; }
}
@media (max-width: 700px) {
  .nav .logo-img { height: 56px; }
  .nav.scrolled .logo-img { height: 46px; }
}
@media (max-width: 460px) {
  .nav .logo-img { height: 46px; }
  .nav.scrolled .logo-img { height: 40px; }
}

/* FOOTER sizing — bigger */
.footer .logo-img {
  height: 140px;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .footer .logo-img { height: 110px; }
}

.nav { padding: 12px 0; }
.nav.scrolled { padding: 10px 0; }

/* Backwards-compat */
.logo-svg { display: block; width: auto; height: 100px; }
.nav .logo-svg { height: 60px; }
.nav.scrolled .logo-svg { height: 46px; }
.footer .logo-svg { height: 140px; }

/* ============================================================
   POLISH PASS — editorial typography, ornaments, textures
   ============================================================ */

/* Subtle paper-grain texture on cream sections */
.section-cream,
.section-light,
.section-ba,
.story-section {
  position: relative;
}
.section-cream::before,
.section-light::before,
.section-ba::before,
.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(60,40,20,0.5) 0, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(60,40,20,0.4) 0, transparent 1.5px),
    radial-gradient(circle at 45% 80%, rgba(60,40,20,0.5) 0, transparent 1.5px),
    radial-gradient(circle at 85% 15%, rgba(60,40,20,0.4) 0, transparent 1.5px);
  background-size: 90px 90px, 110px 110px, 70px 70px, 130px 130px;
}
.section-cream > .container,
.section-light > .container,
.section-ba > .container,
.story-section > .container { position: relative; z-index: 1; }

/* Refined section eyebrow with brass line accents */
.section-subtitle {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}
.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brass);
  opacity: 0.6;
  flex-shrink: 0;
}
.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Ornament divider — line with a centered diamond */
.section-divider {
  position: relative;
  display: block;
  width: 96px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brass) 18%, var(--brass) 82%, transparent);
  margin: 1.4rem 0;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--brass);
  transform: translate(-50%, -50%) rotate(45deg);
}
.section-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* Editorial hero — bigger, more dramatic */
.hero {
  min-height: 100vh;
}
.hero .hero-content {
  padding-top: 160px;
  max-width: 820px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin-bottom: 1.6rem;
}
.hero h1 em {
  display: inline-block;
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brass-light), transparent);
}
.hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--cream);
  max-width: 580px;
  font-weight: 400;
  font-style: italic;
}

/* Hero CTA buttons — refined */
.hero .btn-primary {
  background: var(--brass);
  color: var(--charcoal);
  border-color: var(--brass);
  font-weight: 600;
}
.hero .btn-primary:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
}
.hero .btn-outline {
  border-width: 1px;
  letter-spacing: 0.22em;
}

/* Story section — drop cap on first paragraph */
.story-content > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--brass);
  float: left;
  line-height: 0.85;
  padding: 8px 12px 0 0;
  margin-top: 4px;
}

/* Testimonials with large opening quote marks */
.testimonial-card {
  position: relative;
  padding-top: 56px !important;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 4px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.6;
  font-style: italic;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--charcoal);
}

/* Stats — more refined */
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  letter-spacing: -0.01em;
  color: var(--cream);
  display: block;
  position: relative;
  padding-bottom: 12px;
}
.stat-number::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: var(--brass);
  transform: translateX(-50%);
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-top: 14px;
  display: block;
}

/* Process steps — chapter numbering */
.process-step {
  position: relative;
  counter-increment: step-counter;
}
.process-steps {
  counter-reset: step-counter;
}
.process-step::before {
  content: counter(step-counter, decimal-leading-zero);
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--brass);
  margin-bottom: 8px;
  line-height: 1;
}

/* Brand values strip — refined with proper spacing and gold dots */
.values-strip {
  padding: 40px 0;
  margin-top: -1px;
  font-size: 0.78rem;
  letter-spacing: 0.45em;
}
.values-strip .dot {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  border-radius: 0;
  background: var(--brass);
  opacity: 0.8;
}

/* Hero badges — more refined */
.hero-badges {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(184, 156, 109, 0.25);
}

/* Section spacing more dramatic on large screens */
@media (min-width: 1024px) {
  .section,
  .section-ba,
  .story-section {
    padding: 130px 0;
  }
  .hero .hero-content { padding-top: 180px; }
}

/* Story section image frame — finer ornament */
.story-image::after {
  inset: -20px -20px 20px 20px;
  border: 1px solid var(--brass);
  opacity: 0.7;
}
.story-image::before {
  content: '';
  position: absolute;
  top: -8px; right: -8px;
  width: 40px; height: 40px;
  border-top: 1.5px solid var(--brass);
  border-right: 1.5px solid var(--brass);
  z-index: 2;
}

/* Subtle thin brass line under nav when scrolled */
.nav.scrolled {
  border-bottom: 1px solid rgba(184, 156, 109, 0.3);
}

/* ============================================================
   HERITAGE ATELIER REBUILD — editorial layouts, no AI imagery
   ============================================================ */

/* --- Hero scroll hint --- */
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.85;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--brass), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line { animation: none; }
}

/* --- Credibility line under hero --- */
.credibility-line {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.credibility-line p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 0;
  text-align: center;
}
.credibility-line .sep {
  color: var(--brass);
  font-style: normal;
  font-size: 0.7rem;
  display: inline-flex;
}
@media (max-width: 720px) {
  .credibility-line p { gap: 14px; font-size: 0.95rem; }
  .credibility-line .sep { display: none; }
}

/* --- Story (editorial, typographic-only, no image) --- */
.story-editorial {
  padding: 160px 0;
  background: var(--cream-light);
  text-align: center;
}
.story-editorial .container-narrow {
  max-width: 820px;
}
.story-editorial .story-eyebrow {
  margin-bottom: 56px;
  display: flex;
  justify-content: center;
}
.story-editorial .pull-quote {
  margin: 0 auto 64px;
  max-width: 760px;
  position: relative;
  padding: 0 32px;
}
.story-editorial .pull-quote::before,
.story-editorial .pull-quote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin: 28px auto;
  opacity: 0.6;
}
.story-editorial .pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: -0.005em;
}
.story-editorial .story-prose {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
}
.story-editorial .story-prose p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}
.story-editorial .story-prose .lead {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 1.8rem;
}
.story-editorial .story-prose .lead::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--brass);
  float: left;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  margin-top: 6px;
}
.story-editorial .story-signoff {
  margin-top: 64px;
  text-align: center;
}
.story-editorial .signoff-rule {
  display: block;
  width: 1px;
  height: 56px;
  background: var(--brass);
  margin: 0 auto 24px;
  opacity: 0.6;
}
.story-editorial .signoff-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.story-editorial .signoff-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}

/* --- Materials section (asymmetric grid) --- */
.materials-section {
  padding: 140px 0;
}
.materials-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}
.materials-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0.6rem 0 1.2rem;
  color: var(--cream);
}
.materials-head h2 em {
  color: var(--brass-light);
  font-style: italic;
}
.materials-head p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--text-muted-light);
  font-weight: 400;
}
.materials-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.material-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(184,156,109,0.18);
  align-items: start;
}
.material-row:last-child {
  border-bottom: 1px solid rgba(184,156,109,0.18);
}
.material-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--brass);
  font-weight: 500;
  line-height: 1;
}
.material-row h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.005em;
  text-transform: none;
  margin-bottom: 6px;
}
.material-row p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted-light);
  margin: 0;
}
@media (max-width: 900px) {
  .materials-grid { grid-template-columns: 1fr; gap: 40px; }
  .materials-section { padding: 100px 0; }
}

/* --- Service area (typographic-only) --- */
.service-area-section {
  padding: 140px 0;
  background: var(--cream-light);
}
.service-area-section h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
}
.service-area-section h2 em {
  font-style: italic;
  color: var(--brass-dark);
}
.city-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,156,109,0.25);
  border: 1px solid rgba(184,156,109,0.25);
  margin: 0;
  padding: 0;
}
.city-grid li {
  background: var(--cream-light);
  padding: 36px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.005em;
  position: relative;
  transition: var(--transition);
}
.city-grid li::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--brass);
  rotate: 45deg;
}
.city-grid li:hover {
  background: var(--cream);
  color: var(--brass-dark);
}
@media (max-width: 700px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid li { padding: 26px 12px; }
}
@media (max-width: 420px) {
  .city-grid { grid-template-columns: 1fr; }
}

/* --- Tighter hero — fewer elements --- */
.hero .hero-content {
  padding-top: 140px;
}
.hero h1 {
  margin-bottom: 1.4rem;
}
.hero p {
  margin-bottom: 2.2rem;
}

/* When old hero-badges container is absent, no styles needed */

/* --- Service cards with AI imagery + styled fallbacks --- */
.service-ai-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  background: var(--charcoal);
  display: block;
  text-decoration: none;
  color: var(--cream);
}
.service-ai-bg,
.service-ai-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-ai-bg {
  background-size: cover;
  background-position: center;
  filter: grayscale(0.05) contrast(1.05);
}
.service-ai-card:hover .service-ai-bg,
.service-ai-card:hover .service-ai-bg-pattern {
  transform: scale(1.06);
}

/* Pattern fallbacks for the 3 services without AI images */
.service-ai-card--pattern[data-pattern="hospitality"] .service-ai-bg-pattern {
  background:
    linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal-light) 100%),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(184,156,109,0.08) 14px 15px);
  background-blend-mode: overlay;
}
.service-ai-card--pattern[data-pattern="auto"] .service-ai-bg-pattern {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(184,156,109,0.18) 0%, transparent 50%),
    linear-gradient(160deg, #1a1a1a 0%, #0e0e0e 100%);
}
.service-ai-card--pattern[data-pattern="recliner"] .service-ai-bg-pattern {
  background:
    repeating-radial-gradient(circle at 20% 80%, rgba(184,156,109,0.06) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, var(--charcoal-light) 0%, var(--charcoal-deep) 100%);
}
.service-ai-card--pattern .service-ai-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 30% 35%;
  border: 1px solid rgba(184, 156, 109, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.service-ai-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.4) 55%, rgba(20,20,20,0.15) 100%);
}
.service-ai-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 2;
}
.service-ai-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-light);
  display: block;
  margin-bottom: 10px;
}
.service-ai-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--cream);
  margin: 0 0 8px;
  line-height: 1.15;
}
.service-ai-card h3 em {
  font-style: italic;
  color: var(--brass-light);
}
.service-ai-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted-light);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}
.service-ai-card:hover p,
.service-ai-card:focus-visible p {
  max-height: 90px;
  opacity: 1;
  margin-top: 6px;
}

/* --- Typography-only service cards (no real images) --- */
.grid-6-typo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 156, 109, 0.25);
  border: 1px solid rgba(184, 156, 109, 0.25);
}
@media (max-width: 900px) { .grid-6-typo { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-6-typo { grid-template-columns: 1fr; } }

.service-text-card {
  background: var(--cream);
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--charcoal);
  position: relative;
  transition: var(--transition);
  min-height: 280px;
}
.service-text-card:hover {
  background: var(--cream-light);
}
.service-text-card .service-text-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 18px;
}
.service-text-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--charcoal);
  margin: 0 0 14px;
  line-height: 1.15;
}
.service-text-card h3 em {
  font-style: italic;
  color: var(--brass-dark);
}
.service-text-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 24px;
  flex-grow: 1;
}
.service-text-card .service-text-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 156, 109, 0.3);
  width: 100%;
  transition: var(--transition);
}
.service-text-card:hover .service-text-link {
  color: var(--charcoal);
}

/* --- Services page: AI image side-by-side rows --- */
.service-detail-ai { padding: 110px 0; }
.service-detail-ai-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.service-detail-ai--reverse .service-detail-ai-grid {
  grid-template-columns: 6fr 5fr;
}
.service-detail-ai--reverse .service-detail-ai-image { order: 2; }
.service-detail-ai--reverse .service-body { order: 1; }
.service-detail-ai-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow-md);
}
.service-detail-ai-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.05) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-detail-ai-image:hover img { transform: scale(1.04); }
.service-detail-ai .service-num-inline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 4rem;
  color: var(--brass);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  opacity: 0.85;
}
.service-detail-ai .service-body h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0.4rem 0 0;
}
.service-detail-ai .service-body h2 em {
  font-style: italic;
  color: var(--brass-dark);
}
.service-detail-ai .service-body > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 1.2rem 0;
}
@media (max-width: 900px) {
  .service-detail-ai-grid,
  .service-detail-ai--reverse .service-detail-ai-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-detail-ai--reverse .service-detail-ai-image { order: 1; }
  .service-detail-ai--reverse .service-body { order: 2; }
  .service-detail-ai { padding: 70px 0; }
}

/* --- Services page: typographic detail rows --- */
.service-detail-typo { padding: 110px 0; }
.service-detail-typo-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}
.service-detail-typo .service-num {
  position: sticky;
  top: 140px;
}
.service-detail-typo .service-num span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 7rem;
  color: var(--brass);
  line-height: 0.8;
  display: block;
  border-top: 1px solid var(--brass);
  padding-top: 20px;
  opacity: 0.85;
}
.service-detail-typo .service-body h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0.4rem 0 0;
}
.service-detail-typo .service-body h2 em {
  font-style: italic;
  color: var(--brass-dark);
}
.service-detail-typo .service-body > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 1.4rem 0 1.4rem;
  max-width: 640px;
}
@media (max-width: 800px) {
  .service-detail-typo-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-detail-typo .service-num { position: static; }
  .service-detail-typo .service-num span { font-size: 4.5rem; }
  .service-detail-typo { padding: 70px 0; }
}

/* --- Inner-page hero with optional atmospheric background --- */
.page-hero-with-bg .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: grayscale(0.2) contrast(1.05);
  transform: scale(1.04);
  z-index: 0;
}
.page-hero-with-bg .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.7) 0%, rgba(20,20,20,0.55) 50%, var(--charcoal) 100%);
  z-index: 1;
}

/* --- Atmospheric workshop break --- */
.atmospheric-break {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.atmospheric-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15) contrast(1.05);
  transform: scale(1.04);
}
.atmospheric-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(20,20,20,0.55) 0%, rgba(20,20,20,0.85) 80%);
}
.atmospheric-break .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.atmospheric-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin: 0;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
}
.atmospheric-mark {
  display: block;
  color: var(--brass);
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-style: normal;
}

/* --- Inner-page hero (editorial, typographic, no image) --- */
.page-hero-editorial {
  padding: 200px 0 100px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.page-hero-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(184,156,109,0.08), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(184,156,109,0.05), transparent 50%);
  pointer-events: none;
}
.page-hero-editorial .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.page-hero-editorial h1 {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  margin: 1rem 0 1.4rem;
}
.page-hero-editorial h1 em {
  font-style: italic;
  color: var(--brass-light);
}
.page-hero-editorial p {
  color: var(--text-muted-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* --- Services page detail rows --- */
.service-detail {
  padding: 100px 0;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 72px;
  align-items: center;
}
.service-detail-grid.reverse {
  grid-template-columns: 6fr 5fr;
}
.service-detail-grid.reverse .service-detail-image { order: 2; }
.service-detail-grid.reverse .service-detail-content { order: 1; }
.service-detail-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}
.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-detail-image:hover img {
  transform: scale(1.04);
}
.service-detail-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0.6rem 0 0;
}
.service-detail-content h2 em {
  font-style: italic;
  color: var(--brass-dark);
}
.service-detail-content > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.service-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--brass);
  transform: rotate(45deg);
}
@media (max-width: 900px) {
  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-detail-grid.reverse .service-detail-image { order: 1; }
  .service-detail-grid.reverse .service-detail-content { order: 2; }
  .service-detail { padding: 70px 0; }
}

/* --- Contact page grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form h2,
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.6rem 0 0;
}
.contact-form h2 em,
.contact-info h2 em {
  font-style: italic;
  color: var(--brass-dark);
}
.contact-form form {
  margin-top: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid rgba(20,20,20,0.12);
  border-radius: 0;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--cream-light);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
}
.contact-info-icon svg {
  width: 18px;
  height: 18px;
  color: var(--brass);
}
.contact-info-row h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 4px;
}
.contact-info-row p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0;
}
.contact-info-row a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
}
.contact-info-row a:hover { color: var(--brass-dark); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* --- Portfolio filters polish --- */
.portfolio-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(184,156,109,0.3);
}
.portfolio-filters .filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.portfolio-filters .filter-btn:hover {
  color: var(--charcoal);
}
.portfolio-filters .filter-btn.active {
  background: var(--charcoal);
  color: var(--cream);
}

/* --- Value cards on dark backgrounds --- */
.value-card {
  text-align: center;
  padding: 24px 16px;
}
.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  text-transform: none;
  letter-spacing: 0.005em;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}
.value-card h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: var(--brass);
  transform: translateX(-50%);
}
.value-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-muted-light);
}

/* --- Gallery (masonry-style) --- */
.gallery-section {
  padding: 130px 0;
  background: var(--cream-light);
}
.gallery-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--charcoal);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(20,20,20,0.0) 100%);
  pointer-events: none;
  transition: var(--transition);
}
.gallery-item:hover::after {
  background: linear-gradient(135deg, rgba(20,20,20,0.15) 0%, rgba(184,156,109,0.18) 100%);
}
.gallery-tall {
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-tall { grid-row: span 1; }
}

/* --- Hero video background --- */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.02);
}
.hero .hero-overlay {
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--brass);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-transform: none;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-light);
  font-weight: 500;
}
.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* --- Before/After slider --- */
.section-ba {
  background: var(--cream);
  padding: var(--section-padding);
}
.ba-stage {
  max-width: 1040px;
  margin: 56px auto 0;
}
.ba-slider {
  position: relative;
  user-select: none;
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--charcoal);
  cursor: ew-resize;
  touch-action: none;
  outline: none;
}
.ba-slider:focus-visible {
  box-shadow: var(--shadow-lg), 0 0 0 3px var(--brass);
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
/* AFTER is the bottom layer (always fully painted).
   BEFORE is the top layer, clipped on the right based on handle. */
.ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
}
.ba-after {
  z-index: 1;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-pos, 50%);
  width: 2px;
  background: var(--cream);
  transform: translateX(-1px);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(20,20,20,0.2);
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  border: 1.5px solid var(--brass);
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 8px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(to right, var(--charcoal) 0 6px, transparent 6px) left top / 50% 100% no-repeat,
    linear-gradient(to left, var(--charcoal) 0 6px, transparent 6px) right top / 50% 100% no-repeat;
  clip-path: polygon(0% 50%, 30% 0%, 30% 100%, 0% 50%, 100% 50%, 70% 0%, 70% 100%, 100% 50%);
}
.ba-label {
  position: absolute;
  top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  padding: 7px 14px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 4;
}
.ba-label-before {
  left: 16px;
  background: rgba(20,20,20,0.78);
  color: var(--cream);
}
.ba-label-after {
  right: 16px;
  background: var(--brass);
  color: var(--charcoal);
}
.ba-caption {
  text-align: center;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.ba-caption strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Multiple sliders in a stack */
.ba-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 1040px;
  margin: 56px auto 0;
}
.ba-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.ba-thumb {
  background: transparent;
  border: 1px solid rgba(20,20,20,0.15);
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.ba-thumb:hover { color: var(--charcoal); border-color: var(--charcoal); }
.ba-thumb.active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

@media (max-width: 600px) {
  .ba-slider { aspect-ratio: 4 / 5; }
  .ba-handle::before { width: 40px; height: 40px; }
}

/* --- 6-card service grid (image-backed cards) --- */
.grid-6 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-6 { grid-template-columns: 1fr; } }

.service-img-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--charcoal);
  display: block;
  text-decoration: none;
  color: var(--cream);
}
.service-img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0.85;
}
.service-img-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}
.service-img-card .service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.35) 55%, rgba(20,20,20,0.1) 100%);
  z-index: 1;
}
.service-img-card .service-img-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
}
.service-img-card .service-img-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-light);
  display: block;
  margin-bottom: 8px;
}
.service-img-card h3 {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  letter-spacing: 0.005em;
  text-transform: none;
  font-weight: 500;
  margin: 0 0 6px;
}
.service-img-card p {
  color: var(--text-muted-light);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}
.service-img-card:hover p,
.service-img-card:focus-visible p {
  max-height: 80px;
  opacity: 1;
  margin-top: 6px;
}

/* --- Brand values strip (Quality · Structure · Accountability) --- */
.values-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid rgba(184, 156, 109, 0.25);
  border-bottom: 1px solid rgba(184, 156, 109, 0.25);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--brass);
  text-transform: uppercase;
}
.values-strip .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.6;
}
@media (max-width: 600px) {
  .values-strip { gap: 18px; font-size: 0.65rem; letter-spacing: 0.3em; }
}

/* --- Story section (Mohamed's family-trade narrative) --- */
.story-section {
  padding: var(--section-padding);
  background: var(--cream-light);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-image::after {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--brass);
  z-index: -1;
}
.story-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.story-content h2 em {
  font-style: italic;
  color: var(--brass-dark);
}
.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--charcoal);
  border-left: 2px solid var(--brass);
  padding-left: 24px;
  margin: 28px 0;
}
.story-signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brass-dark);
  margin-top: 24px;
}
.story-signature strong {
  font-weight: 600;
  color: var(--charcoal);
  font-style: normal;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 4px;
}
@media (max-width: 800px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-image::after { display: none; }
}

/* --- Sticky mobile CTA bar --- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 900;
  background: var(--charcoal);
  border-top: 1px solid var(--brass);
}
.sticky-cta a {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sticky-cta a + a {
  border-left: 1px solid rgba(255,255,255,0.1);
  background: var(--brass);
  color: var(--charcoal);
}
.sticky-cta svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 56px; }
}
