/* Web Net - Webnet Solutions Inc.
   Static site, self-hosted (docs/139). Palette sampled from the previous
   GoDaddy site: copper #8e4202 headings, near-black footer, white ground. */

:root {
  --copper:      #8e4202;
  --copper-dark: #6d3202;
  --copper-tint: #fdf6f0;
  --ink:         #1c1a18;
  --ink-soft:    #55504b;
  --ink-faint:   #8a837c;
  --paper:       #ffffff;
  --paper-alt:   #faf8f6;
  --line:        #e8e2dc;
  --dark:        #161616;
  --display: "Dancing Script", "Segoe Script", cursive;
  --body: Georgia, "Times New Roman", Times, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); }

.wrap { width: 100%; max-width: 68rem; margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 46rem; }

/* ---------- header ---------- */
.site-head {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: 1.1rem 0;
}
.site-head .wrap {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
}
.nav-l { justify-self: start; }
.nav-r { justify-self: end; }
.site-head a.nav {
  color: #fff; text-decoration: none;
  font-family: var(--body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,.55);
  padding: .35rem .1rem; border-bottom: 2px solid transparent;
}
.site-head a.nav:hover, .site-head a.nav[aria-current="page"] { border-bottom-color: #fff; }
.logo { justify-self: center; }
.logo img { width: 190px; border-radius: 3px; box-shadow: 0 2px 10px rgba(0,0,0,.18); }

/* Inner pages: the header sits on a copper band rather than a photo. */
.site-head.solid { position: static; background: var(--dark); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 34rem;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 8rem 0 5rem;
  background-size: cover; background-position: center;
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.52));
}
.hero > .wrap { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.2rem); line-height: 1.15;
  margin: 0 0 .8rem; text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.hero p.sub { color: #fff; margin: 0 0 2rem; font-size: 1.05rem; text-shadow: 0 1px 8px rgba(0,0,0,.5); }

.btn {
  display: inline-block; background: #fff; color: var(--ink);
  padding: .85rem 1.9rem; text-decoration: none;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid #fff; transition: background .15s, color .15s;
}
.btn:hover { background: transparent; color: #fff; }
.btn-solid { background: var(--copper); border-color: var(--copper); color: #fff; }
.btn-solid:hover { background: var(--copper-dark); border-color: var(--copper-dark); color: #fff; }

.phone-band {
  background: var(--dark); color: #fff; text-align: center; padding: 1.1rem 0;
}
.phone-band a { color: #fff; text-decoration: none; font-size: 1.05rem; letter-spacing: .03em; }
.phone-band a:hover { text-decoration: underline; }

/* ---------- sections ---------- */
section { padding: 4.5rem 0; }
section.alt { background: var(--paper-alt); }

h2.script {
  font-family: var(--display); font-weight: 700; color: var(--copper);
  font-size: clamp(2rem, 4.6vw, 2.9rem); line-height: 1.2;
  margin: 0 0 .6rem; text-align: center;
}
.rule { width: 62px; height: 2px; background: var(--copper); opacity: .45; margin: 0 auto 2.5rem; }
h2.script.left, .rule.left { text-align: left; margin-left: 0; }

h4 { font-family: var(--body); font-size: 1.18rem; font-weight: 600; margin: 0 0 .5rem; color: var(--ink); }
p { margin: 0 0 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.feature-img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 2px; }
.mission { text-align: center; margin-top: 2rem; }
.mission p { max-width: 44rem; margin-left: auto; margin-right: auto; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 2.25rem 2rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }
.card img { aspect-ratio: 2/1; object-fit: cover; margin-bottom: 1rem; border-radius: 2px; }
.card p { font-size: .97rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 2.25rem; } }
.detail { margin-bottom: 1.6rem; }
.detail:last-child { margin-bottom: 0; }
.detail a { color: var(--copper); text-decoration: none; }
.detail a:hover { text-decoration: underline; }
.addr-card {
  background: var(--copper-tint); border: 1px solid var(--line);
  padding: 2rem; border-radius: 3px;
}
.addr-card h4 { margin-bottom: .75rem; }
.hours-row { display: flex; gap: .6rem; align-items: baseline; }
.open-pill {
  font-family: var(--body); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--copper-dark); background: #f3e6da; padding: .2rem .55rem; border-radius: 999px;
}

/* ---------- footer ---------- */
.site-foot { background: var(--dark); color: #b9b3ad; padding: 1.6rem 0; font-size: .85rem; }
.site-foot .wrap { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
.site-foot a { color: #d8d2cc; text-decoration: none; }
.site-foot a:hover { text-decoration: underline; }

@media (prefers-reduced-motion: no-preference) {
  .hero > .wrap { animation: rise .6s ease-out both; }
  @keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}

/* A quiet imprint line: enough for a verifier to read, not a headline. */
.site-foot .imprint {
  margin-top: .55rem; padding-top: .55rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .76rem; color: #8d8781; display: block;
}
.site-foot .imprint a { color: #8d8781; text-decoration: underline; }
.site-foot .imprint a:hover { color: #d8d2cc; }
