/* Noah's Bark — static site
   Brand palette sampled from the business-card artwork:
   navy #0B3A68, copper #9A622F, warm cream #F8F2E8.
*/

:root {
  --navy: #0b3a68;
  --navy-deep: #082d50;
  --copper: #9a622f;
  --cream: #f8f2e8;
  --cream-deep: #eee3d4;
  --ink: #17202a;
  --white: #fffdf9;
  --line: rgba(154, 98, 47, .42);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --radius: 22px;
  --shadow: 0 18px 60px rgba(21, 37, 52, .09);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgba(154,98,47,.035) 0 1px, transparent 1.2px) 0 0 / 8px 8px,
    var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000;
  transform: translateY(-140%); background: var(--navy); color: #fff;
  padding: 10px 14px; border-radius: 8px; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 242, 232, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(154, 98, 47, .16);
}
.nav-wrap {
  max-width: var(--max); margin: auto; padding: 15px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: baseline; gap: 9px;
  color: var(--navy); text-decoration: none;
}
.brand span { font: 700 25px/1 var(--serif); letter-spacing: -.02em; }
.brand small { color: var(--copper); text-transform: uppercase; letter-spacing: .17em; font-size: 9px; font-weight: 750; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  text-decoration: none; font-size: 14px; font-weight: 650;
  color: var(--navy-deep);
}
.site-nav a:not(.nav-cta):hover { color: var(--copper); }
.site-nav .nav-cta {
  border: 1px solid var(--navy); border-radius: 999px;
  padding: 9px 17px;
}
.site-nav .nav-cta:hover { background: var(--navy); color: white; }
.menu-button {
  display: none; background: transparent; border: 0; padding: 7px; cursor: pointer;
}
.menu-button span:not(.sr-only) {
  display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--navy);
}

.hero {
  min-height: 690px;
  display: grid; align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-inner {
  width: 100%; max-width: var(--max); margin: auto; padding: 84px 28px 76px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center;
}
.eyebrow {
  margin: 0 0 17px;
  color: var(--copper); font-size: 12px; font-weight: 800; letter-spacing: .21em; text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font: 500 clamp(64px, 8vw, 112px)/.9 var(--serif);
  color: var(--navy); letter-spacing: -.055em;
}
.hero h1 em { font-weight: 500; font-style: normal; color: var(--navy); }
.hero-kicker {
  width: max-content; margin: 19px 0 24px;
  font: 700 14px/1 var(--sans); color: var(--copper);
  letter-spacing: .25em; text-transform: uppercase;
  padding-bottom: 11px; border-bottom: 1px solid var(--copper);
}
.hero-services {
  margin: 0 0 19px; font: 600 19px/1.5 var(--serif); color: var(--navy-deep);
}
.hero-services span { color: var(--copper); padding: 0 5px; }
.hero-text { max-width: 570px; font-size: 17px; color: #48515a; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  text-decoration: none; font-weight: 750; font-size: 14px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--navy); color: white; border: 1px solid var(--navy); }
.button.primary:hover { background: var(--navy-deep); }
.button.secondary { color: var(--navy); border: 1px solid rgba(11,58,104,.3); background: rgba(255,255,255,.35); }
.button.secondary:hover { border-color: var(--navy); }

.hero-art { position: relative; min-height: 420px; display: grid; place-items: center; }
.ark-frame {
  width: min(100%, 520px); aspect-ratio: 1.35 / 1;
  display: grid; place-items: center; padding: 32px;
  position: relative;
}
.ark-frame::before {
  content: ""; position: absolute; inset: 2%;
  border: 1px solid rgba(154,98,47,.35); border-radius: 50% 50% 42% 42% / 58% 58% 35% 35%;
}
.ark-frame::after {
  content: ""; position: absolute; inset: 10%;
  border-top: 1px solid rgba(154,98,47,.22); border-radius: 50%;
}
.ark-frame img { position: relative; width: 91%; filter: contrast(1.04); }
.water-lines { position: absolute; left: 8%; right: 8%; bottom: 42px; display: grid; gap: 8px; }
.water-lines i { display: block; height: 1px; background: linear-gradient(90deg, transparent, var(--copper), transparent); opacity: .35; }
.water-lines i:nth-child(2) { margin: 0 12%; }
.water-lines i:nth-child(3) { margin: 0 25%; }

.section { max-width: var(--max); margin: auto; padding: 110px 28px; }
.section-heading { max-width: 680px; margin-bottom: 45px; }
.section-heading h2, .about h2, .area h2, .contact h2 {
  margin: 0 0 18px; font: 500 clamp(42px, 5vw, 68px)/1.02 var(--serif);
  color: var(--navy); letter-spacing: -.035em;
}
.section-heading > p:last-child { font-size: 17px; color: #545c63; max-width: 620px; }

.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card {
  background: rgba(255,253,249,.58);
  border: 1px solid rgba(154,98,47,.27);
  padding: 34px; min-height: 330px; border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255,255,255,.75) inset;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: var(--white); }
.service-icon {
  width: 63px; height: 63px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(11,58,104,.07);
  margin-bottom: 28px;
}
.service-icon svg {
  width: 36px; height: 36px; fill: none; stroke: var(--navy); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 { margin: 0 0 10px; font: 600 29px/1.15 var(--serif); color: var(--navy); }
.service-card p { margin: 0 0 28px; color: #555d64; }
.service-card a { margin-top: auto; color: var(--copper); text-decoration: none; font-weight: 750; font-size: 14px; }
.service-card a span { padding-left: 4px; transition: padding .2s ease; }
.service-card a:hover span { padding-left: 9px; }

.about {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center;
  border-top: 1px solid rgba(154,98,47,.22);
}
.about-copy > p:not(.eyebrow) { color: #4c555d; max-width: 660px; font-size: 17px; }
.text-link { display: inline-block; margin-top: 14px; color: var(--copper); font-weight: 750; text-decoration: none; }
.text-link span { transition: padding .2s; padding-left: 4px; }
.text-link:hover span { padding-left: 9px; }
.about-panel {
  border: 1px solid rgba(154,98,47,.34); border-radius: 50% 50% 45% 45% / 35% 35% 20% 20%;
  min-height: 410px; padding: 65px 58px;
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,253,249,.52);
  text-align: center;
}
.quote { margin: 0; color: var(--navy); font: italic 500 29px/1.35 var(--serif); }
.mini-rule { width: 54px; height: 1px; margin: 28px auto 20px; background: var(--copper); }
.smallcaps { color: var(--copper); text-transform: uppercase; letter-spacing: .17em; font-size: 11px; font-weight: 800; }

.walker-banner {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--cream); overflow: hidden;
}
.walker-banner img {
  width: min(1400px, 100%); margin: auto;
  mix-blend-mode: multiply; opacity: .97;
}

.trust { padding-top: 82px; padding-bottom: 95px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 20px 38px 20px 0; }
.trust-item + .trust-item { border-left: 1px solid var(--line); padding-left: 38px; }
.trust-item strong { display: block; color: var(--copper); font: 600 13px var(--serif); margin-bottom: 18px; }
.trust-item h3 { margin: 0 0 10px; color: var(--navy); font: 600 24px/1.2 var(--serif); }
.trust-item p { margin: 0; color: #586068; }

.area { padding-top: 40px; }
.area-card {
  position: relative; overflow: hidden;
  padding: 75px clamp(28px, 7vw, 90px);
  background: var(--navy); color: white; border-radius: 30px;
}
.area-card::after {
  content: ""; position: absolute; right: -70px; top: -110px; width: 420px; height: 420px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018);
}
.area-card .eyebrow { color: #d2a477; }
.area-card h2 { color: white; max-width: 750px; }
.area-card p { max-width: 650px; color: rgba(255,255,255,.77); font-size: 17px; margin-bottom: 28px; }
.area-card .button.primary { position: relative; z-index: 1; background: var(--cream); color: var(--navy); border-color: var(--cream); }

.contact { padding-bottom: 120px; }
.contact-inner {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px;
  border-top: 1px solid var(--line); padding-top: 95px;
}
.contact-copy p:last-child { color: #515a61; font-size: 17px; max-width: 500px; }
.contact-options { border-top: 1px solid var(--line); }
.contact-row {
  display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 20px;
  text-decoration: none; min-height: 88px; border-bottom: 1px solid var(--line);
  transition: padding .2s ease, background .2s ease;
}
.contact-row:hover { padding: 0 12px; background: rgba(255,255,255,.32); }
.contact-label { color: var(--copper); text-transform: uppercase; letter-spacing: .17em; font-size: 10px; font-weight: 800; }
.contact-row strong { color: var(--navy); font: 600 clamp(20px, 2.6vw, 30px)/1.1 var(--serif); }
.arrow { color: var(--copper); font-size: 22px; }

footer { background: var(--navy-deep); color: white; }
.footer-inner {
  max-width: var(--max); margin: auto; padding: 48px 28px;
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: end;
}
.footer-inner > div { display: flex; align-items: baseline; gap: 10px; }
.footer-inner strong { font: 600 25px var(--serif); }
.footer-inner > div span { color: #d2a477; text-transform: uppercase; letter-spacing: .18em; font-size: 9px; font-weight: 800; }
.footer-inner p { margin: 0; color: rgba(255,255,255,.64); font-size: 12px; }
.copyright { text-align: right; }

/* Simple animation that still works with JS disabled. */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
}
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 20px; padding-top: 70px; }
  .hero-art { min-height: 310px; }
  .ark-frame { max-width: 460px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .about { grid-template-columns: 1fr; gap: 45px; }
  .about-panel { max-width: 600px; min-height: 340px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); padding: 28px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 35px; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .copyright { text-align: left; }
}

@media (max-width: 700px) {
  .nav-wrap { padding: 14px 20px; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 12px 20px 20px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 4px; }
  .site-nav .nav-cta { text-align: center; margin-top: 8px; }
  .brand small { display: none; }
  .hero-inner, .section { padding-left: 20px; padding-right: 20px; }
  .hero-inner { padding-top: 58px; padding-bottom: 55px; }
  .hero h1 { font-size: clamp(58px, 18vw, 82px); }
  .hero-services { font-size: 16px; }
  .hero-services span { padding: 0 2px; }
  .hero-art { min-height: 270px; }
  .section { padding-top: 78px; padding-bottom: 78px; }
  .about-panel { padding: 50px 28px; min-height: 300px; }
  .quote { font-size: 25px; }
  .area { padding-top: 20px; }
  .area-card { border-radius: 22px; padding: 55px 26px; }
  .contact { padding-bottom: 80px; }
  .contact-inner { padding-top: 70px; }
  .contact-row { grid-template-columns: 86px 1fr auto; gap: 12px; }
  .contact-row strong { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
