/* Paradise Rock Works. Single stylesheet, no build step.
   Palette: warm sandstone background with a grit texture, dark loam ink,
   machine-orange accent. */

:root {
  --sand: #e8e1d3;
  --sand-deep: #ddd3c0;
  --ink: #241f18;
  --ink-soft: #4a3b2a;
  --stone: #7c6d58;
  --orange: #d4691e;
  --orange-bright: #e8802e;
  --line: rgba(36, 31, 24, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background-color: var(--sand);
  /* Grit: fractal noise rendered as a faint dark speckle over the sand color. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.29 0 0 0 0 0.23 0 0 0 0 0.15 0 0 0 0.14 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: var(--ink);
  color: #f4eee2;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.mark { width: 38px; height: 38px; flex: none; }

.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-name em {
  font-style: normal;
  color: var(--orange-bright);
}

.header-phone {
  font-weight: 700;
  color: var(--orange-bright);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--orange-bright);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  transition: background 0.15s, color 0.15s;
}

.header-phone:hover { background: var(--orange-bright); color: var(--ink); }

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

.hero {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 7rem) 1.25rem clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 9vw, 5rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.lede {
  max-width: 560px;
  margin: 1.4rem auto 2rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: transform 0.1s, background 0.15s;
}

.btn:active { transform: translateY(1px); }

.btn svg { width: 20px; height: 20px; }

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-bright); }

.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--sand); }

.btn-light { background: #f4eee2; color: var(--ink); }
.btn-light:hover { background: #fff; }

.hero-alt {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--stone);
}

/* ---------- Strata divider ---------- */

.strata { line-height: 0; }
.strata svg { width: 100%; height: clamp(60px, 8vw, 110px); display: block; }

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

section h2 {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}

.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--orange);
}

/* Services sits directly under the dark strata band. */
.services {
  background: var(--ink-soft);
  color: #f4eee2;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 7vw, 5rem);
}

.services h2 { color: #fff; }
.services .kicker { color: var(--orange-bright); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1100px;
}

/* Six cards split 3+3 on wide screens instead of an uneven 4+2. */
@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

.services .card-grid { margin: 0 auto; }
.services h2, .services-note { max-width: 1100px; margin-left: auto; margin-right: auto; }
.services h2 { margin-bottom: 1.6rem; }

.card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(244, 238, 226, 0.14);
  border-radius: 10px;
  padding: 1.4rem 1.3rem;
}

.card .icon {
  width: 34px;
  height: 34px;
  color: var(--orange-bright);
  margin-bottom: 0.7rem;
}

.card h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }

.card p { font-size: 0.95rem; color: #d9d0bf; }

.services-note {
  margin-top: 1.6rem;
  color: #d9d0bf;
  font-size: 0.98rem;
}

/* ---------- Why ---------- */

.why { padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 3rem); }

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-item h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-bottom: 0.6rem;
}

.why-item p { color: var(--ink-soft); }

/* ---------- Service area ---------- */

.area {
  background: var(--sand-deep);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem);
}

.area > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

.area h2 { margin-bottom: 1rem; }

.towns {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem auto 1.2rem;
}

.towns li {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.area-note { color: var(--stone); font-size: 0.95rem; }

/* ---------- Contact ---------- */

.contact {
  background: var(--ink);
  color: #f4eee2;
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 1.25rem;
}

.contact h2 {
  color: #fff;
  display: block;
  margin-bottom: 0.4rem;
}

.contact-lede { color: #c9bfab; margin-bottom: 1.5rem; }

.big-phone {
  display: inline-block;
  font-size: clamp(1.9rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--orange-bright);
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.big-phone:hover { color: #fff; }

.contact address {
  font-style: normal;
  margin-top: 1.8rem;
  color: #c9bfab;
  line-height: 1.9;
}

.contact address a { color: var(--orange-bright); }

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

.site-footer {
  background: #1a1611;
  color: #8f8371;
  text-align: center;
  font-size: 0.88rem;
  padding: 1.4rem 1rem 2rem;
  line-height: 1.9;
}

.site-footer a { color: #b3a68f; text-decoration: none; }
.site-footer a:hover { color: var(--orange-bright); }

/* ---------- Mobile call bar ---------- */

.call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.call-bar a {
  flex: 1;
  text-align: center;
  padding: 0.95rem 0;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
}

.call-bar a:first-child { background: var(--orange); color: #fff; }
.call-bar a:last-child { background: var(--ink); color: var(--orange-bright); }

@media (max-width: 640px) {
  .call-bar { display: flex; }
  .site-footer { padding-bottom: 5rem; } /* keep footer text above the fixed bar */
  .header-phone { display: none; }       /* the call bar covers it on phones */
}
