@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --cream: #f7f4ee;
  --gold: #b8963e;
  --gold-light: #d4ae60;
  --gray: #f2f0eb;
  --gray-mid: #e8e5df;
  --text-muted: #777;
  --text-dark: #1a1a1a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid #e0ddd6;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 64px;
}
.nav-logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--black); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-cta { background: var(--black); color: var(--white); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.65rem 1.5rem; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 2rem;
  overflow-y: auto;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu ul li {
  border-bottom: 1px solid var(--gray-mid);
}
.mobile-menu ul li a {
  display: block;
  padding: 1.1rem 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover {
  color: var(--gold);
}
.mobile-menu .mobile-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: 4px;
  margin-top: 1rem;
  padding: 1rem !important;
  font-size: 1rem !important;
}

@media(max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
  .nav-links {
    display: none !important;
  }
  .nav-cta {
    display: none;
  }
  nav {
    padding: 0 1.5rem;
  }
}

/* BREADCRUMB */
.breadcrumb { padding: 80px 3rem 0; background: var(--cream); }
.breadcrumb-inner { max-width: 1140px; margin: 0 auto; padding: 1rem 0; display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--gold); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* SERVICE HERO */
.svc-hero { background: var(--black); padding: 5rem 3rem 4rem; }
.svc-hero-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.svc-eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 10px; }
.svc-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.svc-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); line-height: 1.05; font-weight: 400; margin-bottom: 1.25rem; }
.svc-hero h1 em { color: var(--gold); font-style: italic; }
.svc-hero-desc { font-size: 1rem; color: #888; line-height: 1.75; margin-bottom: 2rem; font-weight: 300; }
.svc-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--white); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2rem; text-decoration: none; transition: background 0.2s; font-weight: 500; display: inline-block; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--white); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.25); transition: border-color 0.2s; font-weight: 500; display: inline-block; }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }
.svc-hero-right { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
.svc-stat { background: var(--black); padding: 1.5rem; }
.svc-stat-num { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.svc-stat-lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #666; margin-top: 4px; }

/* CONTENT SECTIONS */
.sec { padding: 5rem 3rem; }
.container { max-width: 1140px; margin: 0 auto; }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.sec-h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--black); line-height: 1.1; font-weight: 400; margin-bottom: 1rem; }
.sec-h2 em { color: var(--gold); font-style: italic; }
.sec-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300; }

/* WHAT'S INCLUDED GRID */
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: #e0ddd6; border: 1px solid #e0ddd6; }
.included-item { background: var(--white); padding: 2rem 1.75rem; transition: background 0.2s; }
.included-item:hover { background: var(--cream); }
.included-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.included-title { font-size: 1rem; font-weight: 500; color: var(--black); margin-bottom: 0.5rem; }
.included-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* WHY ART STRIP */
.why-strip { background: var(--cream); border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--gray-mid); }
.why-item { background: var(--cream); padding: 2rem 1.5rem; }
.why-num { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.why-title { font-size: 0.95rem; font-weight: 500; color: var(--black); margin-bottom: 0.4rem; }
.why-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* CTA BAND */
.cta-band { background: var(--gold); padding: 4rem 3rem; text-align: center; }
.cta-h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); font-weight: 400; margin-bottom: 1rem; line-height: 1.1; }
.cta-h2 em { font-style: italic; color: var(--black); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 420px; margin: 0 auto 2rem; line-height: 1.7; }
.btn-black { background: var(--black); color: var(--white); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 2.5rem; text-decoration: none; transition: background 0.2s; display: inline-block; font-weight: 500; }
.btn-black:hover { background: #333; }

/* OTHER SERVICES */
.other-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: #e0ddd6; border: 1px solid #e0ddd6; margin-top: 2.5rem; }
.os-item { background: var(--white); padding: 1.5rem; text-decoration: none; transition: background 0.2s; display: block; }
.os-item:hover { background: var(--cream); }
.os-icon { font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }
.os-name { font-size: 0.95rem; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.os-link { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.06em; }

/* FOOTER */
footer { background: var(--black); border-top: 1px solid #1f1f1f; padding: 2rem 3rem; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--gold); }
.footer-logo span { color: #555; }
.footer-copy { font-size: 0.78rem; color: #555; text-align: center; line-height: 1.6; }
.footer-phone { font-size: 0.9rem; font-weight: 500; color: var(--gold); text-decoration: none; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.75rem; color: #555; text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--gold); }

/* QUOTE BLOCK */
.quote-block { background: var(--cream); border-left: 3px solid var(--gold); padding: 2rem; margin: 3rem 0; }
.quote-text { font-size: 1.05rem; color: var(--text-dark); line-height: 1.75; font-style: italic; margin-bottom: 0.75rem; }
.quote-sig { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

@media(max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .sec { padding: 3rem 1.5rem; }
  .svc-hero { padding: 3rem 1.5rem 2.5rem; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .breadcrumb { padding: 72px 1.5rem 0; }
  footer { padding: 2rem 1.5rem; }
  .cta-band { padding: 3rem 1.5rem; }
}
