/* Wyoming Valley Drywall & Coating — shared styles */

:root {
  --ink: #241c12;
  --ink-soft: #5c5142;
  --cream: #faf6ef;
  --cream-deep: #f1e9dc;
  --panel: #ffffff;
  --char: #17140e;
  --char-2: #211c13;
  --copper: #b3541e;
  --copper-bright: #d96a24;
  --copper-soft: #f3ddc9;
  --line: #e4d9c8;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(36, 28, 18, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}

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

a { color: var(--copper); }

.wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 20, 14, 0.96);
  backdrop-filter: blur(8px);
  color: #f5efe4;
  border-bottom: 1px solid rgba(217, 106, 36, 0.35);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--copper-bright), #8a3c12);
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.02em;
}

.brand-text { line-height: 1.15; min-width: 0; }

.brand-text strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-text span {
  font-size: 12px;
  color: #cbbfa9;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-actions { display: flex; align-items: center; gap: 18px; }

.header-nav {
  display: flex;
  gap: 18px;
  font-size: 14.5px;
}

.header-nav a {
  color: #e8dfcf;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.header-nav a:hover, .header-nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--copper-bright);
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper-bright);
  color: #fff;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(217, 106, 36, 0.35);
  transition: transform 0.12s ease, background 0.12s ease;
}

.call-btn:hover { background: #e87a30; transform: translateY(-1px); }

.call-btn svg { flex: none; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: #f7f1e6;
  background: var(--char);
  overflow: hidden;
}

.hero-swirl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18, 15, 10, 0.92) 30%, rgba(18, 15, 10, 0.55) 70%, rgba(18, 15, 10, 0.35));
}

.hero .wrap {
  position: relative;
  padding: 84px 0 92px;
  max-width: 720px;
  margin-left: max(calc((100vw - 1100px) / 2), 4vw);
}

.hero-kicker {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: var(--copper-bright);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero p.lede {
  font-size: clamp(16px, 2.2vw, 19px);
  color: #ddd2bd;
  max-width: 56ch;
  margin: 0 0 30px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.call-btn.big {
  font-size: 18px;
  padding: 15px 28px;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f0e8d8;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1.5px solid rgba(240, 232, 216, 0.45);
  border-radius: 999px;
  transition: border-color 0.12s ease, background 0.12s ease;
}

.ghost-btn:hover { border-color: var(--copper-bright); background: rgba(217, 106, 36, 0.12); }

.hero-phone-note {
  margin-top: 18px;
  font-size: 14px;
  color: #b9ad96;
}

/* ---------- Sections ---------- */

section { padding: 72px 0; }

.section-kicker {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12.5px;
  color: var(--copper);
  margin-bottom: 10px;
}

section h2 { font-size: clamp(28px, 4vw, 40px); }

.section-intro {
  max-width: 62ch;
  color: var(--ink-soft);
  margin: 0 0 40px;
  font-size: 17px;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--copper-soft);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--copper);
}

.service-card h3 { font-size: 21px; }

.service-card p { color: var(--ink-soft); margin: 0 0 16px; font-size: 15.5px; }

.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
  color: var(--ink);
}

.service-card li {
  padding: 7px 0 7px 26px;
  position: relative;
  border-top: 1px dashed var(--line);
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--copper-bright);
  transform: rotate(45deg);
}

/* Feature band (floors) */

.floors-band {
  background: var(--char-2);
  color: #f2ebdd;
  position: relative;
  overflow: hidden;
}

.floors-band .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.floors-band .section-kicker { color: var(--copper-bright); }

.floors-band p { color: #cfc3ab; }

.floors-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(217, 106, 36, 0.3);
  aspect-ratio: 4 / 3;
}

.floors-visual svg, .floors-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.floors-points { margin: 22px 0 30px; padding: 0; list-style: none; }

.floors-points li {
  padding: 9px 0 9px 30px;
  position: relative;
  border-top: 1px solid rgba(240, 232, 216, 0.12);
  font-size: 15.5px;
}

.floors-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--copper-bright);
  transform: rotate(45deg);
}

/* About / why */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.why-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.why-item h3 { font-size: 17px; letter-spacing: 0.04em; }

.why-item p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

/* Service area */

.area {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.town {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  color: var(--ink);
}

.town.home {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
  font-weight: 600;
}

/* Contact band */

.contact-band {
  background: var(--char);
  color: #f5efe2;
  text-align: center;
}

.contact-band h2 { font-size: clamp(30px, 4.5vw, 46px); }

.contact-band p { color: #cfc3ab; max-width: 52ch; margin: 0 auto 30px; }

.phone-huge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 18px 34px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--copper-bright), #9c4517);
  box-shadow: 0 10px 34px rgba(217, 106, 36, 0.4);
  transition: transform 0.12s ease;
}

.phone-huge:hover { transform: translateY(-2px); }

.contact-sub { margin-top: 22px; font-size: 14.5px; color: #b9ad96; }

/* ---------- Gallery ---------- */

.gallery-head { padding: 60px 0 8px; }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 8px;
}

.filter-btn {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.12s ease;
}

.filter-btn:hover { border-color: var(--copper); color: var(--copper); }

.filter-btn.active {
  background: var(--char);
  border-color: var(--char);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding-bottom: 80px;
}

.shot {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.shot.hidden { display: none; }

.shot-media {
  aspect-ratio: 4 / 3;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.shot-media img { width: 100%; height: 100%; object-fit: cover; }

.shot-media.placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  text-align: center;
}

.shot-media.placeholder .ph-inner {
  position: relative;
  z-index: 1;
  padding: 12px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
}

.ph-drywall { background: linear-gradient(150deg, #8b8378, #5d564c 55%, #46403a); }
.ph-paint { background: linear-gradient(150deg, #b3541e, #7d3a14 55%, #4f2712); }
.ph-floor { background: linear-gradient(150deg, #6d7d84, #9aa4a4 40%, #d9d4c6 75%, #7d8a8d); }

.shot-caption {
  padding: 14px 16px;
  font-size: 14.5px;
}

.shot-caption strong { display: block; font-size: 15px; }

.shot-caption span { color: var(--ink-soft); font-size: 13.5px; }

.gallery-note {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 22px 0 34px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- Footer ---------- */

.site-footer {
  background: #100e09;
  color: #a99d87;
  padding: 40px 0;
  font-size: 14px;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.site-footer strong { color: #e8dfcf; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }

.site-footer a { color: var(--copper-bright); text-decoration: none; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .floors-band .wrap { grid-template-columns: 1fr; gap: 32px; }
  .floors-visual { order: -1; }
  .area-flex { grid-template-columns: 1fr; gap: 28px; }
  .header-nav { display: none; }
  .hero .wrap { margin-left: auto; padding: 64px 0 72px; }
}

@media (max-width: 480px) {
  .brand-text strong { font-size: 14px; white-space: normal; }
  .brand-text span { font-size: 10.5px; }
  .call-btn { padding: 9px 14px; font-size: 13px; }
  section { padding: 54px 0; }
}
