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

:root {
  --timber: #8B6914;
  --copper: #B87333;
  --copper-light: #d4956a;
  --cream: #FDF8F0;
  --warm-white: #FAF6EE;
  --stone: #7a6a58;
  --text: #2C1F0E;
  --muted: #6B5740;
  --border: #E8D9C0;
  --dark: #1A1008;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--copper);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--timber); }

.btn-outline {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.btn-outline:hover { color: #fff; border-color: rgba(255,255,255,0.7); }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  background: var(--dark);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo { display: flex; align-items: center; gap: 0.625rem; }

.logo-icon { font-size: 1.1rem; color: var(--copper-light); }

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f0e8d8;
  letter-spacing: 0.01em;
}

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: 0.825rem; font-weight: 500; color: #a09080; transition: color 0.15s; }
.nav-links a:hover { color: #f0e8d8; }

.nav-phone {
  background: var(--copper) !important;
  color: #fff !important;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
}
.nav-phone:hover { background: var(--timber) !important; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image-wrap { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,10,2,0.9) 0%,
    rgba(20,10,2,0.5) 50%,
    rgba(20,10,2,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem 4rem;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #f8f2e8;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.hero h1 em { font-style: italic; color: var(--copper-light); }

.hero-lead {
  font-size: 1rem;
  color: rgba(240,232,216,0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

/* ── Hours strip ── */
.hours-strip {
  background: var(--copper);
  padding: 0.875rem 0;
}

.hours-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  padding: 0 0.75rem;
  font-weight: 500;
}

.open-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #dcfce7;
  display: inline-block;
}

.hours-sep { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ── Sections ── */
.section { padding: 5.5rem 0; }
.section-warm { background: var(--warm-white); }

.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.875rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.875rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.service-card {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.service-card:hover { background: var(--warm-white); }
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(n+4) { border-bottom: none; }

.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.875rem;
  font-weight: 400;
}

.service-card:hover .svc-num { color: var(--copper-light); }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-family: 'Playfair Display', serif;
}

.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── Photo section ── */
.photo-section { background: var(--dark); }

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 420px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-text {
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background: rgba(26,16,8,0.95);
}

.photo-text .section-tag { color: var(--copper-light); }

.photo-text h2 {
  font-size: 2rem;
  color: #f0e8d8;
  font-weight: 400;
}

.photo-text p { font-size: 0.9rem; color: #a09080; line-height: 1.7; }

/* ── Steps ── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
}

.step { flex: 1; text-align: center; padding: 2rem 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: 8px; }

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--copper);
  padding: 2.5rem 0.75rem 0;
  flex-shrink: 0;
}

/* ── About ── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.about-text p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.75; }

.features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

.feature {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.feat-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature strong { display: block; font-size: 0.875rem; color: var(--text); margin-bottom: 0.2rem; }
.feature p { font-size: 0.8rem; color: var(--muted); margin: 0; }

.guarantee-block {
  background: var(--dark);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.guarantee-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--copper-light);
  line-height: 1;
  font-weight: 700;
}

.guarantee-label {
  font-size: 1rem;
  font-weight: 700;
  color: #f0e8d8;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}

.guarantee-block > p { font-size: 0.82rem; color: #a09080; line-height: 1.65; }

/* ── Location ── */
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.loc-group { margin-bottom: 1.75rem; }

.loc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}

.loc-val { font-size: 0.925rem; color: var(--text); line-height: 1.75; }
.loc-val a { color: var(--copper); font-weight: 600; }
.loc-val a:hover { text-decoration: underline; }

.hours-table { border-collapse: collapse; }
.hours-table td { padding: 0.25rem 0; font-size: 0.875rem; }
.hours-table td:first-child { min-width: 120px; }
.hours-table .closed td { color: var(--muted); }

.map-wrap iframe { border-radius: 8px; display: block; }

/* ── Footer ── */
.footer { background: var(--dark); padding: 3rem 0 1.75rem; }
.footer-inner { display: flex; flex-direction: column; gap: 1.75rem; }

.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: #f0e8d8; }
.footer-sub { font-size: 0.7rem; color: #5a4a3a; margin-top: 0.15rem; }

.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.82rem; color: #6a5a4a; transition: color 0.15s; }
.footer-nav a:hover { color: var(--copper-light); }

.footer-copy { font-size: 0.75rem; color: #3a2a1a; border-top: 1px solid rgba(255,255,255,0.04); padding-top: 1.5rem; }

.copper { color: var(--copper-light) !important; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2n) { border-right: none; }
  .about-wrap { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img:last-child { display: none; }
  .location-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-content { padding: 0 1.5rem 3rem; }
  .hero h1 { font-size: 2.75rem; }
  .hours-sep { display: none; }
  .hours-item { padding: 0.2rem 0.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(n) { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .section { padding: 3.5rem 0; }
}
