/* ============================
   Den Leather Repair — style.css
   ============================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --bg:           #faf8f5;
  --bg-dark:      #1c1814;
  --bg-section:   #f2ede6;
  --text:         #2a2520;
  --text-muted:   #7a7068;
  --accent:       #b8712e;
  --accent-dark:  #8f5520;
  --accent-light: #f5e8d8;
  --white:        #ffffff;
  --border:       #e2d9cf;
  --shadow:       0 2px 16px rgba(30,20,10,.10);
  --shadow-lg:    0 8px 40px rgba(30,20,10,.14);
  --radius:       10px;
  --header-h:     64px;
  --font-head:    'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-muted { background: var(--bg-section); }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: inherit;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-dark .section-sub { color: #c0b8af; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
}
.btn-white:hover { background: var(--accent-light); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); }

/* ── Top bar ── */
.topbar {
  background: var(--bg-dark);
  color: #c0b8af;
  font-size: .8rem;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: .03em;
}
.topbar a { color: var(--accent); font-weight: 600; }
.topbar a:hover { color: #d4892e; }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 12px rgba(30,20,10,.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: -.01em;
}
.logo span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav a:hover { color: var(--accent); }
.nav .btn { padding: 9px 20px; font-size: .84rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 950;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.5rem; font-family: var(--font-head); font-weight: 600; color: var(--text); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  background: none;
  color: var(--text);
}

/* ── Hero ── */
.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,113,46,.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__sub {
  font-size: 1.08rem;
  color: #c0b8af;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: #a09890;
}
.hero__trust span { display: flex; align-items: center; gap: 6px; }
.hero__trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ── Quote card ── */
.quote-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.quote-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.quote-card p { font-size: .87rem; color: var(--text-muted); margin-bottom: 20px; }
.quote-card .form-group { margin-bottom: 14px; }
.quote-card label { display: block; font-size: .78rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s;
}
.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus { outline: none; border-color: var(--accent); }
.quote-card textarea { resize: vertical; min-height: 80px; }
.quote-card .btn { width: 100%; justify-content: center; padding: 13px; }
.form-success { display: none; background: #e8f5e9; border: 1.5px solid #4caf50; border-radius: 6px; padding: 12px 16px; font-size: .88rem; color: #2e7d32; margin-top: 12px; }

/* ── Gallery ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.gallery-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.gallery-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.gallery-card__img {
  aspect-ratio: 1;
  background: var(--bg-section);
  overflow: hidden;
  position: relative;
}
.gallery-card__img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: .65rem;
  font-weight: 600;
  text-align: center;
  padding: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  z-index: 1;
}
.gallery-divider::before {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: var(--white);
  color: var(--accent);
  font-size: .75rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.gallery-card__info { padding: 12px 14px; }
.gallery-card__info h4 { font-size: .9rem; font-weight: 600; }
.gallery-card__info p { font-size: .78rem; color: var(--text-muted); margin-top: 3px; }

/* Placeholder gallery image */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-section);
  color: var(--text-muted);
  font-size: .72rem;
  gap: 6px;
}
.gallery-placeholder svg { opacity: .4; }

/* ── Services ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1.3rem;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-card__tags {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.service-card .btn { font-size: .82rem; padding: 9px 16px; }

/* ── How it works ── */
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: var(--border);
}
.how-step { text-align: center; padding: 0 12px; }
.how-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.how-step h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.how-step p { font-size: .88rem; color: var(--text-muted); }

/* ── Trust bar ── */
.trust-bar {
  background: var(--accent-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Map ── */
#service-map {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 40px;
}

/* ── Service areas grid ── */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.area-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
  color: var(--text);
}
.area-card:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.area-card svg { color: var(--accent); flex-shrink: 0; }

/* ── Reviews ── */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.review-text { font-size: .93rem; line-height: 1.7; color: var(--text); margin-bottom: 16px; font-style: italic; }
.review-author { font-size: .82rem; font-weight: 600; color: var(--text-muted); }

/* ── FAQ ── */
.faq__list { margin-top: 40px; max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question svg { flex-shrink: 0; transition: transform .3s; color: var(--accent); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }
.faq-answer p { font-size: .93rem; color: var(--text-muted); line-height: 1.75; }

/* ── Contact form ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}
.contact__info h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact__info p { font-size: .95rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.contact__links { display: flex; flex-direction: column; gap: 12px; }
.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}
.contact__link:hover { color: var(--accent); }
.contact__link-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact__form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact__form .form-group { margin-bottom: 14px; }
.contact__form label { display: block; font-size: .78rem; font-weight: 600; margin-bottom: 5px; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus { outline: none; border-color: var(--accent); }
.contact__form textarea { resize: vertical; min-height: 110px; }
.contact__form .btn { width: 100%; justify-content: center; }

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  color: #a09890;
  padding: 56px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand .logo { color: var(--white); margin-bottom: 12px; }
.footer__brand p { font-size: .85rem; line-height: 1.75; max-width: 280px; }
.footer__col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a {
  font-size: .85rem;
  color: #a09890;
  transition: color .2s;
}
.footer__col li a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer__bottom a { color: var(--accent); }

/* ── Mobile CTA bar ── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-cta .btn { flex: 1; justify-content: center; padding: 12px 10px; font-size: .84rem; }

/* ── City page hero ── */
.city-hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 64px 0 56px;
}
.city-hero__breadcrumb { font-size: .78rem; color: #6b6560; margin-bottom: 12px; }
.city-hero__breadcrumb a { color: var(--accent); }
.city-hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; margin-bottom: 14px; }
.city-hero p { font-size: 1.05rem; color: #c0b8af; max-width: 580px; margin-bottom: 28px; }
.city-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .quote-card { display: none; }
  .how__steps { grid-template-columns: 1fr; }
  .how__steps::before { display: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 68px; }
  .footer__grid { grid-template-columns: 1fr; }
  .contact__form .form-row { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  #service-map { height: 320px; }
}
@media (min-width: 681px) {
  .mobile-cta { display: none !important; }
}
