/* ===== TOKENS ===== */
:root {
  --navy:        #0F1E2D;
  --navy-deep:   #080e17;
  --charcoal:    #1e262f;
  --charcoal-mid:#252d36;
  --copper:      #B87338;
  --copper-light:#d4a45a;
  --copper-dim:  rgba(184,115,51,0.18);
  --sand:        #E8DCC2;
  --cream:       #FAF7F2;
  --muted:       #7a8fa6;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;
  --r:           6px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Film grain — every surface immediately feels more tactile */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.16,1,.3,1), transform 0.75s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; letter-spacing: 0.01em; }

/* Section label — the copper ornament treatment from the brand identity */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--copper);
  opacity: 0.55;
}
.section-label span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

/* Copper rule ornament — used as section separator */
.copper-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 0;
}
.copper-rule::before { content: ''; flex: 0 0 48px; height: 1px; background: linear-gradient(to right, transparent, var(--copper)); opacity: 0.55; }
.copper-rule::after  { content: ''; flex: 0 0 48px; height: 1px; background: linear-gradient(to left, transparent, var(--copper)); opacity: 0.55; }
.copper-rule-glyph { color: var(--copper); font-size: 0.6rem; opacity: 0.8; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 14px; }
.section-header .subtitle { margin: 0 auto; }

.subtitle {
  font-size: 1.02rem;
  color: var(--sand);
  opacity: 0.75;
  max-width: 540px;
  line-height: 1.8;
  font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--r);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--copper);
  color: var(--navy-deep);
  border-color: var(--copper);
}
.btn-primary:hover {
  background: var(--copper-light);
  border-color: var(--copper-light);
  box-shadow: 0 8px 24px rgba(184,115,51,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,247,242,0.35);
}
.btn-outline:hover { border-color: var(--copper); color: var(--copper); }
.btn-dark {
  background: var(--navy-deep);
  color: var(--copper);
  border-color: var(--navy-deep);
}
.btn-dark:hover { background: var(--charcoal); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 18, 27, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,115,51,0.12);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.45); border-bottom-color: rgba(184,115,51,0.2); }

.nav-logo { display: flex; align-items: center; line-height: 1; }
.nav-logo img { height: 52px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,220,194,0.65);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-phone { font-size: 0.75rem; font-weight: 600; color: rgba(232,220,194,0.55); letter-spacing: 0.3px; white-space: nowrap; transition: color 0.2s; }
.nav-phone:hover { color: var(--copper); }
.nav-cta { padding: 9px 20px; font-size: 0.67rem; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--cream); border-radius: 2px; transition: 0.3s; display: block; }

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../pics/IMG_3418.jpeg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  transition: transform 10s ease;
  will-change: transform;
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 55%, rgba(184,115,51,0.07) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(8,14,23,0.45) 0%, rgba(8,14,23,0.35) 35%, rgba(8,14,23,0.78) 100%);
}

/* The warm lantern glow — makes the headline feel lit from below */
.hero-glow {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(184,115,51,0.10) 0%, rgba(184,115,51,0.04) 35%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 920px;
}

.hero-est {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  opacity: 0.9;
}

.hero-content h1 {
  color: var(--cream);
  font-weight: 700;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin-bottom: 0;
}

.hero-subtitle-line {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(232,220,194,0.5);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: 12px;
}

/* The copper rule between title and tagline — the brand's signature ornament */
.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto;
  width: 200px;
}
.hero-rule::before,
.hero-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,115,51,0.6));
}
.hero-rule::after { background: linear-gradient(to left, transparent, rgba(184,115,51,0.6)); }
.hero-rule span { color: var(--copper); font-size: 0.55rem; opacity: 0.8; }

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  font-style: italic;
  color: var(--sand);
  max-width: 580px;
  margin: 0 auto 16px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-body {
  font-size: 0.84rem;
  color: rgba(232,220,194,0.55);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.85;
  font-weight: 400;
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Large badge watermark centered behind hero content */
.hero-badge-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Lantern brand mark above hero headline */
.hero-lantern {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
  filter: drop-shadow(0 4px 24px rgba(184,115,56,0.45));
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(184,115,51,0.45);
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(184,115,51,0.5), transparent);
  animation: scrollpulse 2.2s ease infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ===== BENEFITS ===== */
#benefits {
  padding: 110px 40px;
  background: var(--charcoal);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1160px;
  margin: 0 auto;
  background: rgba(184,115,51,0.08);
  border: 1px solid rgba(184,115,51,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.benefit-card {
  padding: 52px 40px;
  background: var(--charcoal-mid);
  text-align: left;
  position: relative;
  transition: background 0.3s;
}
.benefit-card:hover { background: #2a333d; }

/* Decorative large number behind each benefit */
.benefit-card::before {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.benefit-icon-line {
  width: 32px;
  height: 2px;
  background: var(--copper);
  margin-bottom: 24px;
  opacity: 0.8;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 600;
}
.benefit-card h3 span { color: var(--copper); }

.benefit-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== SERVICES ===== */
#services {
  padding: 110px 40px;
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1160px;
  margin: 0 auto;
  background: rgba(184,115,51,0.07);
  border: 1px solid rgba(184,115,51,0.07);
  border-radius: 10px;
  overflow: hidden;
}

.service-card {
  padding: 36px 32px 40px;
  background: rgba(15,30,45,0.9);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: rgba(22,38,54,1); }

/* Large faded service number — editorial style */
.service-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.055;
  line-height: 1;
  margin-bottom: -12px;
  display: block;
  transition: opacity 0.3s;
}
.service-card:hover .service-num { opacity: 0.1; }

/* Thin copper accent on hover */
.service-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--copper);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.service-card:hover::after { transform: scaleY(1); }

/* Brand service icons */
.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
}
.service-card:hover .service-icon svg { opacity: 0.9; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ===== PORTFOLIO ===== */
#portfolio {
  padding: 110px 40px;
  background: var(--charcoal);
}

.portfolio-grid {
  max-width: 1160px;
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}

/* First two photos are "hero" — wider and taller */
.portfolio-item:nth-child(1) { grid-column: span 7; }
.portfolio-item:nth-child(2) { grid-column: span 5; }
.portfolio-item:nth-child(3) { grid-column: span 4; }
.portfolio-item:nth-child(4) { grid-column: span 4; }
.portfolio-item:nth-child(5) { grid-column: span 4; }
.portfolio-item:nth-child(6) { display: none; } /* only 5 in grid */

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

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.16,1,.3,1);
}
.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,23,0.75) 0%, rgba(8,14,23,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.portfolio-overlay-inner span {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}
.portfolio-overlay-inner::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--copper);
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 10, 16, 0.97);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 30px;
  font-size: 1.8rem;
  color: rgba(232,220,194,0.5);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  font-weight: 300;
}
.lightbox-close:hover { color: var(--copper); }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 88px 40px;
  background: var(--copper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle texture in the copper band */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--navy-deep); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 10px; position: relative; }
.cta-banner p { font-size: 0.95rem; color: rgba(8,14,23,0.65); margin-bottom: 30px; position: relative; }
.cta-banner .btn { position: relative; }

/* Badge watermark in CTA copper band */
.cta-badge-watermark {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

/* ===== GUARANTEES ===== */
#guarantees {
  padding: 110px 40px;
  background: var(--navy);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1160px;
  margin: 0 auto;
  background: rgba(184,115,51,0.07);
  border: 1px solid rgba(184,115,51,0.07);
  border-radius: 10px;
  overflow: hidden;
}

.guarantee-card {
  padding: 44px 28px;
  background: rgba(15,30,45,0.85);
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.guarantee-card:hover { background: rgba(22,38,54,0.95); }

.guarantee-stat {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--copper);
  margin-bottom: 6px;
  line-height: 1;
  font-weight: 700;
}
.guarantee-card h3 {
  font-size: 0.82rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.68rem;
}
.guarantee-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }

/* Thin copper top border on hover */
.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.guarantee-card:hover::before { transform: scaleX(1); }

/* ===== PROCESS ===== */
#process {
  padding: 110px 40px;
  background: var(--charcoal);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1160px;
  margin: 0 auto;
}

.process-step {
  padding: 0 32px 0 28px;
  border-left: 1px solid rgba(184,115,51,0.15);
  position: relative;
}
.process-step:first-child { border-left: none; padding-left: 0; }

.process-step-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 4px;
}

.process-step-label {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.8;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 600;
}
.process-step p { font-size: 0.83rem; color: var(--muted); line-height: 1.75; }

/* ===== ABOUT ===== */
#about {
  padding: 110px 40px;
  background: var(--navy);
}
.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 88px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* Thin copper inset frame — feels like a luxury photo print */
.about-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184,115,51,0.3);
  border-radius: 3px;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 180px;
  height: 180px;
}
.about-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(184,115,56,0.55)) drop-shadow(0 8px 28px rgba(0,0,0,0.65));
}

.about-content { }
.about-content h2 { margin-bottom: 6px; }
.about-content h2 em { color: var(--copper); font-style: italic; }

.about-content p {
  font-size: 0.9rem;
  color: var(--sand);
  opacity: 0.78;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Pull quote — the "signature moment" of this section */
.about-quote {
  border-left: 2px solid var(--copper);
  padding: 14px 0 14px 24px;
  margin: 28px 0;
}
.about-quote p {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--sand);
  opacity: 0.9;
  line-height: 1.65;
  margin: 0;
}

.about-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(184,115,51,0.15);
  margin-top: 4px;
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 700;
}
.about-stat-label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 110px 40px;
  background: var(--charcoal);
}
.testimonials-placeholder {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 48px;
  border: 1px solid rgba(184,115,51,0.15);
  border-radius: 8px;
  position: relative;
}
.testimonials-placeholder::before {
  content: '"';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--copper);
  opacity: 0.15;
  line-height: 1;
}
.testimonials-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.75;
}

/* ===== SOCIAL ===== */
#social {
  padding: 110px 40px;
  background: var(--navy);
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 20px;
}
.social-tile {
  aspect-ratio: 1;
  background: rgba(44,49,56,0.4);
  border: 1px solid rgba(184,115,51,0.08);
  border-radius: 5px;
}
.social-note { text-align: center; font-size: 0.78rem; color: var(--muted); font-style: italic; }

/* ===== CONTACT ===== */
#contact {
  padding: 110px 40px;
  background: var(--charcoal);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 88px;
  max-width: 1160px;
  margin: 0 auto;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info h2 em { color: var(--copper); font-style: italic; }
.quote-word { color: var(--copper); font-style: normal; font-family: var(--font-serif); }
.contact-info p {
  font-size: 0.88rem;
  color: var(--sand);
  opacity: 0.7;
  line-height: 1.85;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-detail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  margin-top: 7px;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-detail-text span { font-size: 0.9rem; color: var(--sand); }

.contact-form {
  background: rgba(15,30,45,0.55);
  border: 1px solid rgba(184,115,51,0.12);
  border-radius: 8px;
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(30,40,50,0.7);
  border: 1px solid rgba(184,115,51,0.15);
  border-radius: var(--r);
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.87rem;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(184,115,51,0.5);
  background: rgba(30,40,50,0.95);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,143,166,0.4); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--charcoal); }
.form-submit { width: 100%; padding: 16px; font-size: 0.73rem; letter-spacing: 2.5px; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  padding: 64px 40px 32px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,115,51,0.3), transparent);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer-logo { margin-bottom: 18px; display: flex; align-items: center; gap: 16px; }
.footer-logo-img { height: 110px; width: auto; display: block; }
.footer-monogram {
  height: 52px;
  width: auto;
  display: block;
  opacity: 0.55;
  filter: drop-shadow(0 2px 8px rgba(184,115,56,0.3));
}

/* Branded section divider — copper rule with centered badge */
.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 40px;
  margin: 0 auto;
  max-width: 1160px;
}
.brand-divider::before,
.brand-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,115,56,0.45));
}
.brand-divider::after {
  background: linear-gradient(to left, transparent, rgba(184,115,56,0.45));
}
.brand-divider img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.55;
  filter: drop-shadow(0 2px 12px rgba(184,115,56,0.35));
  flex-shrink: 0;
}

/* Services section lantern ornament */
.services-lantern {
  display: block;
  width: 36px;
  height: auto;
  margin: 0 auto 14px;
  opacity: 0.55;
  filter: drop-shadow(0 2px 10px rgba(184,115,56,0.5));
  animation: lanternpulse 3.5s ease-in-out infinite;
}
@keyframes lanternpulse {
  0%, 100% { filter: drop-shadow(0 2px 10px rgba(184,115,56,0.5)); }
  50%       { filter: drop-shadow(0 2px 18px rgba(184,115,56,0.85)); }
}
.footer-tagline { font-size: 0.8rem; color: var(--muted); line-height: 1.75; max-width: 270px; }
.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.82rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { font-size: 0.72rem; color: rgba(122,143,166,0.4); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--copper); color: var(--copper); }

/* ===== MOBILE NAV ===== */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8,14,23,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-family: var(--font-serif); font-size: 2rem; color: var(--cream); transition: color 0.2s; }
.nav-mobile-menu a:hover { color: var(--copper); }
.nav-mobile-close { position: absolute; top: 26px; right: 30px; font-size: 1.8rem; color: var(--muted); cursor: pointer; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .process-step:nth-child(3) { border-left: none; padding-left: 0; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-image { aspect-ratio: 16/9; }
  .about-badge { right: 0; bottom: -20px; width: 140px; height: 140px; }
  .portfolio-item:nth-child(1) { grid-column: span 12; }
  .portfolio-item:nth-child(2) { grid-column: span 6; }
  .portfolio-item:nth-child(3) { grid-column: span 6; }
  .portfolio-item:nth-child(4) { grid-column: span 6; }
  .portfolio-item:nth-child(5) { grid-column: span 6; }
}

@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  #benefits, #services, #portfolio, .cta-banner,
  #guarantees, #process, #about, #testimonials,
  #social, #contact, footer { padding-left: 20px; padding-right: 20px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .portfolio-item { grid-column: span 1 !important; }
  .guarantees-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-left: none; padding-left: 0; border-top: 1px solid rgba(184,115,51,0.12); padding-top: 32px; }
  .process-step:first-child { border-top: none; padding-top: 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .about-badge { position: static; margin-top: 16px; display: block; width: 100px; height: 100px; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }
}
