/* Ashgrove Protection — styles.css — 2026-09-16 */
:root {
  --ink: #0b0d10; --paper: #f1efe9; --steel: rgba(241, 239, 233, 0.55); --line: rgba(241, 239, 233, 0.16); --signal: #ff5a1f;
  --display: "Anybody", system-ui, sans-serif; --body: "IBM Plex Sans", system-ui, sans-serif; --pad: clamp(20px, 5vw, 80px);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--paper); font: 400 17px/1.6 var(--body); -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, figure, dl, dd, address, details, summary { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }
.giant { font-family: var(--display); font-weight: 800; font-stretch: 125%; text-transform: uppercase; line-height: 0.92; letter-spacing: -0.01em; font-size: clamp(48px, 9vw, 128px); }
.state { font-family: var(--display); font-weight: 600; font-stretch: 110%; line-height: 1.08; letter-spacing: -0.01em; font-size: clamp(28px, 4vw, 60px); }
.caps { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 54px; padding: 0 28px; border: 1px solid var(--paper); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.2s, color 0.2s; }
.btn:hover { background: var(--paper); color: var(--ink); }
.btn-fill { background: var(--paper); color: var(--ink); }
.btn-fill:hover { background: var(--signal); border-color: var(--signal); color: var(--ink); }
.center { text-align: center; }
.steel { color: var(--steel); }
.section { padding: clamp(80px, 12vw, 180px) var(--pad); position: relative; }
.rule { border-top: 1px solid var(--line); }

/* header */
.header { position: sticky; top: 0; z-index: 30; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 18px var(--pad); background: rgba(11, 13, 16, 0.88); backdrop-filter: blur(8px); }
.nav { display: flex; gap: clamp(20px, 3vw, 44px); }
.nav.r { justify-self: end; }
.nav a { opacity: 0.85; }
.nav a:hover { opacity: 1; }
.nav a[aria-current] { opacity: 0.45; }
.mark { width: 60px; height: 60px; display: grid; place-items: center; }
.mark svg { width: 44px; height: 44px; }
.brand-name { display: block; text-align: center; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px; }
.menu-btn { display: none; justify-self: end; }
.sheet { position: fixed; inset: 0; z-index: 40; background: var(--ink); display: grid; grid-template-rows: auto 1fr auto; padding: 18px var(--pad) 28px; }
.sheet-top { display: flex; justify-content: space-between; align-items: center; }
.sheet nav { align-self: center; display: grid; gap: 4px; }
.sheet nav a { font-family: var(--display); font-weight: 800; font-stretch: 115%; text-transform: uppercase; font-size: clamp(30px, 8vw, 56px); line-height: 1.05; }
.sheet nav a:hover { color: var(--signal); }

/* hero */
.hero { position: relative; min-height: calc(100vh - 96px); display: grid; place-items: center; text-align: center; padding: 40px var(--pad); isolation: isolate; }
.hero .circle { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(58vw, 560px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; z-index: -1; }
.hero .circle img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.6) brightness(0.75); }
.hero h1 { max-width: 12ch; }
.hero .down { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); width: 28px; height: 28px; }

/* statement + pillars */
.statement { max-width: 22ch; margin: 0 auto; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: clamp(56px, 8vw, 120px); text-align: center; }
.pillars div { display: grid; gap: 10px; justify-items: center; font-size: 15px; color: var(--steel); }
.pillars b { font-family: var(--display); font-weight: 700; font-stretch: 110%; font-size: 22px; line-height: 1.1; color: var(--paper); max-width: 12ch; }
.pillars .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.18); margin-bottom: 8px; }

/* services */
.services .side { position: absolute; top: 50%; font-family: var(--display); font-weight: 800; font-stretch: 115%; text-transform: uppercase; font-size: 22px; letter-spacing: 0.02em; color: var(--steel); white-space: nowrap; }
.services .side.l { left: clamp(8px, 2vw, 24px); transform: translateY(-50%) rotate(-90deg); transform-origin: center; }
.services .side.r { right: clamp(8px, 2vw, 24px); transform: translateY(-50%) rotate(90deg); transform-origin: center; }
.services .small { margin-bottom: clamp(40px, 6vw, 80px); }
.svc-list { display: grid; gap: clamp(48px, 8vw, 120px); }
.svc-list a { display: block; max-width: 16ch; margin: 0 auto; transition: color 0.2s; }
.svc-list a:hover { color: var(--signal); }
.services .btn { margin-top: clamp(48px, 7vw, 96px); }

/* faqs */
.faq { max-width: 900px; margin: clamp(40px, 6vw, 80px) auto 0; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; font-family: var(--display); font-weight: 600; font-stretch: 105%; font-size: clamp(20px, 2.4vw, 32px); line-height: 1.15; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 400; font-size: 32px; color: var(--steel); flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 28px; color: var(--steel); max-width: 64ch; }

/* sectors */
.sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 40px; max-width: 1000px; margin: clamp(40px, 6vw, 80px) auto 0; }
.sectors li { border-top: 1px solid var(--line); padding: 14px 0; font-family: var(--display); font-weight: 600; font-stretch: 105%; font-size: clamp(18px, 1.8vw, 24px); }

/* footer */
.footer { border-top: 1px solid var(--line); margin: 0 var(--pad); padding: clamp(48px, 7vw, 96px) 0 32px; display: grid; gap: 40px; text-align: center; }
.footer .name { font-family: var(--display); font-weight: 800; font-stretch: 120%; text-transform: uppercase; font-size: clamp(24px, 3vw, 40px); }
.footer address { font-style: normal; display: grid; gap: 8px; font-weight: 500; }
.footer .row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; }
.footer .live { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--steel); }
.footer .live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.2); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 16px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; font-size: 14px; color: var(--steel); }

/* inner */
.page-head { padding: clamp(56px, 8vw, 120px) var(--pad) clamp(32px, 4vw, 56px); text-align: center; display: grid; gap: 24px; justify-items: center; }
.page-head p { max-width: 60ch; color: var(--steel); font-size: 18px; }
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding: clamp(40px, 6vw, 88px) var(--pad); }
.detail:nth-child(even) figure { order: -1; }
.detail figure { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 50% 50% 8px 8px / 30% 30% 8px 8px; }
.detail img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.6) brightness(0.85); }
.detail .copy { display: grid; gap: 20px; justify-items: start; }
.detail .copy p { color: var(--steel); max-width: 48ch; }
.detail ul { display: grid; gap: 8px; color: var(--steel); }
.detail li::before { content: "—"; margin-right: 10px; color: var(--signal); }
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 var(--pad) clamp(56px, 8vw, 120px); max-width: 1100px; margin: 0 auto; }
.person { border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 4px; }
.person b { font-family: var(--display); font-weight: 600; font-stretch: 105%; font-size: 20px; }
.person span { color: var(--steel); font-size: 15px; }
.form { display: grid; gap: 18px; width: min(100%, 560px); margin: 0 auto; text-align: left; }
.form label { display: grid; gap: 6px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.form input, .form select, .form textarea { font: 400 17px/1.4 var(--body); letter-spacing: 0; text-transform: none; font-weight: 400; background: transparent; border: 1px solid var(--line); padding: 12px 14px; color: var(--paper); border-radius: 0; }
.form select option { color: var(--ink); }
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--paper); }
.form .btn { justify-self: start; }
.form-status { font-size: 15px; color: var(--signal); min-height: 1.4em; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); padding: 0 var(--pad) clamp(56px, 8vw, 120px); align-items: start; }
.contact-grid .info { display: grid; gap: 28px; }
.contact-grid address { font-style: normal; display: grid; gap: 6px; }
.contact-grid figure { aspect-ratio: 4 / 3; overflow: hidden; }
.contact-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.6) brightness(0.8); }

/* demo note */
.demo-note { position: fixed; left: 12px; bottom: 12px; z-index: 50; padding: 6px 10px; border-radius: 999px; background: rgba(241, 239, 233, 0.14); color: rgba(241, 239, 233, 0.9); font: 500 11px/1 var(--body); backdrop-filter: blur(6px); border: 1px solid var(--line); }
.demo-note:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) { * { transition-duration: 0.001s !important; } html { scroll-behavior: auto; } }
@media (max-width: 1000px) { .pillars { grid-template-columns: 1fr 1fr; } .sectors { grid-template-columns: 1fr 1fr; } .people { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) {
  .header { grid-template-columns: auto 1fr auto; }
  .nav { display: none; }
  .mark { justify-self: start; }
  .menu-btn { display: inline-flex; }
  .services .side { display: none; }
  .detail, .contact-grid { grid-template-columns: 1fr; }
  .detail:nth-child(even) figure { order: 0; }
  .hero { min-height: 80vh; }
  .hero .circle { width: 80vw; }
}
@media (max-width: 560px) { .pillars, .sectors, .people { grid-template-columns: 1fr; } .giant { font-size: clamp(40px, 12vw, 64px); } }
