:root {
  --black: #070707;
  --ink: #101010;
  --panel: #151515;
  --gold: #d7a835;
  --gold-bright: #f0c75e;
  --cream: #f4f0e8;
  --white: #fff;
  --muted: #aaa69d;
  --line: rgba(255,255,255,.13);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--black); color: var(--white); font-family: var(--body); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.skip-link { position: fixed; z-index: 999; left: 1rem; top: -5rem; background: var(--gold); color: var(--black); padding: .7rem 1rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }

.social-strip { min-height: 42px; padding: 0 clamp(1.25rem, 5vw, 5rem); display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem; color: #d7d7d7; background: #0f0f0f; border-bottom: 1px solid var(--line); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.social-strip > span { color: var(--muted); }
.social-links { display: flex; gap: 1.5rem; }
.social-links a { font-weight: 700; transition: color .2s ease; }
.social-links a span { color: var(--gold); }
.social-links a:hover { color: var(--gold-bright); }

.site-header { position: relative; z-index: 10; min-height: 86px; padding: 0 clamp(1.25rem, 5vw, 5rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--line); background: rgba(7,7,7,.93); }
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-mark { position: relative; width: 45px; height: 58px; display: flex; align-items: flex-end; justify-content: center; }
.brand-mark strong { color: var(--gold-bright); font-family: var(--display); font-size: 2rem; line-height: .9; letter-spacing: -.1em; }
.tower { position: absolute; bottom: 27px; width: 3px; background: var(--gold); }
.t1 { height: 11px; left: 10px; }.t2 { height: 18px; left: 16px; }.t3 { height: 28px; left: 22px; }.t4 { height: 17px; left: 28px; }.t5 { height: 11px; left: 34px; }
.brand-name { font-family: var(--display); text-transform: uppercase; letter-spacing: .07em; line-height: .95; font-size: 1.05rem; }
.brand-name b { display: block; color: var(--gold-bright); font-size: 1.35rem; }
.site-header nav { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.5rem); font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.site-header nav a { position: relative; padding: .5rem 0; }
.site-header nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); transition: width .2s ease; }
.site-header nav a:hover::after { width: 100%; }
.header-call { border: 1px solid var(--gold); padding: .65rem 1rem; color: var(--gold-bright); font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.header-call span { color: var(--white); margin-left: .3rem; }

.hero { position: relative; min-height: 690px; overflow: hidden; padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7rem) 7rem; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .65fr); gap: clamp(3rem, 7vw, 8rem); align-items: center; background: radial-gradient(circle at 85% 20%, rgba(215,168,53,.14), transparent 28%), linear-gradient(120deg,#050505 0%,#0a0a0a 62%,#11100d 100%); }
.hero::before { content: ""; position: absolute; left: -10vw; bottom: -26rem; width: 70vw; height: 34rem; background: var(--gold); transform: skewY(-7deg); opacity: .95; }
.hero-grid { position: absolute; inset: 0 0 0 58%; opacity: .25; background-image: linear-gradient(rgba(215,168,53,.18) 1px,transparent 1px), linear-gradient(90deg,rgba(215,168,53,.18) 1px,transparent 1px); background-size: 46px 46px; transform: perspective(600px) rotateY(-16deg) scale(1.2); }
.hero-copy, .hero-card { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 1rem; display: flex; align-items: center; gap: .7rem; color: var(--gold-bright); font-family: var(--display); font-size: .95rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 35px; height: 2px; background: currentColor; }
.hero h1, .section h2 { margin: 0; font-family: var(--display); font-weight: 900; line-height: .85; text-transform: uppercase; letter-spacing: -.025em; }
.hero h1 { max-width: 900px; font-size: clamp(4.8rem, 10.5vw, 10rem); }
.hero h1 em { color: var(--gold-bright); font-style: normal; }
.hero-lede { max-width: 650px; margin: 2rem 0 2.25rem; color: #d0cec9; font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: .85rem 1.45rem; font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--black); background: var(--gold-bright); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.button-ghost span { color: var(--gold); margin-left: .8rem; }
.hero-card { padding: 2rem; border: 1px solid rgba(215,168,53,.45); background: rgba(15,15,15,.82); backdrop-filter: blur(8px); box-shadow: 20px 20px 0 rgba(215,168,53,.08); }
.hero-card > p { margin: 0 0 1rem; color: var(--muted); font-family: var(--display); font-size: .9rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-card ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.hero-card li { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.hero-card li span { color: var(--gold); font-family: var(--display); font-size: .8rem; }
.hero-card li strong { font-family: var(--display); font-size: 1.35rem; text-transform: uppercase; letter-spacing: .04em; }
.hero-card > a { display: flex; justify-content: space-between; margin-top: 1.4rem; color: var(--gold-bright); font-size: .85rem; font-weight: 700; }
.hero-seal { position: absolute; right: 2rem; bottom: 1rem; z-index: 3; width: 118px; height: 118px; border: 1px solid rgba(7,7,7,.45); border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: .55rem; color: var(--black); transform: rotate(-8deg); }
.hero-seal::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(7,7,7,.55); border-radius: 50%; }
.hero-seal span { font-family: var(--display); font-size: 2.3rem; font-weight: 900; letter-spacing: -.12em; }
.hero-seal small { border-left: 1px solid rgba(7,7,7,.45); padding-left: .5rem; font-family: var(--display); font-weight: 800; line-height: 1.1; text-transform: uppercase; }

.proof-bar { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3,1fr); padding: 0 clamp(1.25rem, 5vw, 5rem); background: var(--cream); color: var(--black); }
.proof-bar div { padding: 1.8rem clamp(1rem, 3vw, 3rem); border-right: 1px solid #d5cfc2; }
.proof-bar div:last-child { border-right: 0; }
.proof-bar strong { display: block; font-family: var(--display); font-size: 1.45rem; text-transform: uppercase; }
.proof-bar span { color: #5f5a51; font-size: .82rem; }

.section { padding: clamp(5rem, 9vw, 8.5rem) clamp(1.25rem, 7vw, 7rem); }
.section-heading { display: grid; grid-template-columns: minmax(260px, .8fr) 1.2fr; gap: 1.5rem 5rem; margin-bottom: 3rem; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .about h2, .contact h2 { font-size: clamp(3.8rem, 7vw, 7rem); }
.section-heading > p:last-child { max-width: 540px; margin: .2rem 0 0; color: var(--muted); align-self: end; font-size: 1.05rem; }
.services { background: #0d0d0d; }
.service-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }
.service-feature { position: relative; min-height: 465px; padding: 2rem; border-right: 1px solid var(--line); background: #111; }
.service-feature:last-child { border-right: 0; }
.service-feature.featured { background: var(--gold); color: var(--black); }
.service-number { color: var(--muted); font-family: var(--display); font-weight: 700; }
.featured .service-number { color: rgba(0,0,0,.58); }
.service-icon { height: 95px; margin: 2rem 0 1.3rem; display: flex; align-items: flex-end; gap: 7px; }
.service-icon span { display: block; width: 35px; background: var(--gold); transform: skewY(-14deg); }
.service-icon span:nth-child(1) { height: 40px; }.service-icon span:nth-child(2) { height: 63px; }.service-icon span:nth-child(3) { height: 85px; }
.featured .service-icon span { background: var(--black); }
.service-icon.foundation { align-items: center; gap: 0; }
.service-icon.foundation span { height: 18px; width: 56px; border: 3px solid var(--black); background: transparent; transform: none; }
.service-icon.foundation span + span { margin-left: -3px; transform: translateY(18px); }
.service-icon.foundation span:last-child { transform: translate(-109px,-18px); }
.service-icon.stamp { display: grid; grid-template-columns: repeat(3,42px); gap: 4px; align-content: center; }
.service-icon.stamp span { width: 42px; height: 30px; transform: none; border: 1px solid var(--gold); background: transparent; }
.service-feature h3 { margin: 0 0 .55rem; font-family: var(--display); font-size: 2rem; line-height: 1; text-transform: uppercase; }
.service-feature p { min-height: 53px; margin: 0; color: var(--muted); font-size: .9rem; }
.featured p { color: #3d331d; }
.service-feature ul { margin: 1.5rem 0 0; padding: 1rem 0 0; list-style: none; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; font-size: .83rem; }
.featured ul { border-color: rgba(0,0,0,.25); }
.service-feature li::before { content: "+"; color: var(--gold); margin-right: .5rem; }
.featured li::before { color: var(--black); }
.all-services { margin-top: 2rem; padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: .75fr 1.25fr; gap: 3rem; border: 1px solid var(--line); background: linear-gradient(115deg,#151515,#0b0b0b); }
.all-services h3 { margin: 0; max-width: 480px; font-family: var(--display); font-size: clamp(2rem,4vw,4rem); line-height: .95; text-transform: uppercase; }
.service-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.service-list li { padding: .75rem 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.12rem; font-weight: 600; text-transform: uppercase; }
.service-list li::before { content: "◆"; color: var(--gold); font-size: .55rem; margin-right: .8rem; vertical-align: .17rem; }

.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; background: var(--cream); color: var(--black); }
.about-mark { position: relative; min-height: 470px; overflow: hidden; background: var(--black); display: flex; align-items: center; justify-content: center; box-shadow: 22px 22px 0 var(--gold); }
.about-mark::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(215,168,53,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(215,168,53,.13) 1px,transparent 1px); background-size: 35px 35px; }
.about-mark > span { position: relative; color: var(--gold-bright); font-family: var(--display); font-size: clamp(9rem,19vw,17rem); font-weight: 900; line-height: 1; letter-spacing: -.15em; }
.about-mark > span:nth-child(2) { color: transparent; -webkit-text-stroke: 2px var(--gold-bright); margin-left: -.1em; }
.about-mark small { position: absolute; left: 2rem; bottom: 2rem; color: var(--white); border-left: 3px solid var(--gold); padding-left: .7rem; font-family: var(--display); font-size: 1rem; font-weight: 700; line-height: 1.1; text-transform: uppercase; }
.about-copy .eyebrow { color: #8b6817; }
.about-copy h2 { max-width: 700px; }
.about-copy p { max-width: 650px; color: #625e56; }
.about-copy .large-copy { color: #292723; font-size: clamp(1.1rem,2vw,1.45rem); line-height: 1.55; }
.text-link { display: inline-block; margin-top: 1.1rem; padding-bottom: .3rem; border-bottom: 2px solid var(--gold); font-family: var(--display); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; }
.text-link span { color: #987114; }

.reviews { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem,8vw,9rem); align-items: center; background: #0d0d0d; }
.reviews h2 { max-width: 780px; font-size: clamp(3.8rem,7vw,7rem); }
.reviews-intro > p:not(.eyebrow) { max-width: 600px; margin: 1.5rem 0 2rem; color: var(--muted); }
.reviews-intro .button span { margin-left: .65rem; }
.review-panel { position: relative; padding: clamp(2rem,5vw,4rem); border: 1px solid rgba(215,168,53,.45); background: linear-gradient(145deg,#181818,#0a0a0a); box-shadow: 18px 18px 0 rgba(215,168,53,.13); }
.review-panel::before { content: ""; position: absolute; top: -1px; left: 2rem; width: 72px; height: 4px; background: var(--gold); }
.google-wordmark { color: #e8e8e8; font-size: 1.35rem; font-weight: 600; letter-spacing: -.04em; }
.google-wordmark span { display: inline-grid; width: 32px; height: 32px; margin-right: .2rem; place-items: center; border-radius: 50%; background: conic-gradient(#4285f4 0 25%,#34a853 0 45%,#fbbc05 0 70%,#ea4335 0); color: white; font-weight: 800; }
.stars { margin: 1.7rem 0 .7rem; color: var(--gold-bright); font-size: 1.7rem; letter-spacing: .13em; }
.review-panel blockquote { margin: 0; font-family: var(--display); font-size: clamp(1.65rem,3vw,2.5rem); font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.review-panel > p { color: var(--muted); font-size: .88rem; }
.review-panel > a { display: flex; justify-content: space-between; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--gold-bright); font-family: var(--display); font-size: 1rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 9rem); background: var(--gold); color: var(--black); }
.eyebrow.light { color: var(--black); }
.contact h2 { max-width: 600px; }
.contact > div > p:last-child { max-width: 540px; font-size: 1.05rem; }
.contact-actions { border-top: 1px solid rgba(0,0,0,.35); }
.contact-actions a { display: grid; grid-template-columns: 105px 1fr auto; align-items: center; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid rgba(0,0,0,.35); }
.contact-actions a > span { font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.contact-actions strong { font-family: var(--display); font-size: clamp(1.1rem,2vw,1.5rem); overflow-wrap: anywhere; }
.contact-actions b { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--black); border-radius: 50%; transition: background .2s ease,color .2s ease; }
.contact-actions a:hover b { background: var(--black); color: var(--gold); }

footer { padding: 2.3rem clamp(1.25rem, 5vw, 5rem); display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; border-top: 1px solid var(--line); background: #050505; color: var(--muted); font-size: .78rem; }
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-ar { color: var(--gold); font-family: var(--display); font-size: 2rem; font-weight: 900; letter-spacing: -.1em; }
.footer-brand strong { display: block; color: var(--white); font-family: var(--display); font-size: 1.05rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-brand div span { display: block; }
.footer-socials { display: flex; gap: 1.4rem; color: var(--white); font-weight: 600; }
.mobile-actions { display: none; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-card { max-width: 520px; }
  .section-heading, .all-services, .about, .reviews, .contact { grid-template-columns: 1fr; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .service-feature { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-feature:last-child { border-bottom: 0; }
  .service-feature p { min-height: 0; }
  .service-icon { height: 78px; }
  .about-mark { min-height: 390px; max-width: 620px; }
  footer { grid-template-columns: 1fr auto; }
  footer > p { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { padding-bottom: 68px; }
  .social-strip { min-height: 52px; justify-content: center; padding: .45rem .75rem; gap: .7rem; flex-wrap: wrap; }
  .social-strip > span { width: 100%; text-align: center; line-height: 1; }
  .social-links { width: 100%; justify-content: center; gap: 1.25rem; }
  .site-header { min-height: 74px; }
  .brand-name { font-size: .85rem; }
  .brand-name b { font-size: 1.05rem; }
  .brand-mark { width: 38px; transform: scale(.85); transform-origin: left center; margin-right: -.35rem; }
  .header-call { padding: .55rem .7rem; font-size: .78rem; }
  .header-call span { display: none; }
  .hero { padding-top: 4.5rem; padding-bottom: 5rem; }
  .hero h1 { font-size: clamp(4rem, 21vw, 6.2rem); }
  .hero-lede { margin-top: 1.5rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-card { padding: 1.4rem; }
  .hero-seal { display: none; }
  .proof-bar { grid-template-columns: 1fr; padding: 0 1.25rem; }
  .proof-bar div { padding: 1.2rem 0; border-right: 0; border-bottom: 1px solid #d5cfc2; }
  .proof-bar div:last-child { border-bottom: 0; }
  .section-heading { gap: .6rem; }
  .section-heading h2, .about h2, .contact h2 { font-size: clamp(3.5rem,17vw,5rem); }
  .service-feature { padding: 1.5rem; }
  .service-feature ul, .service-list { grid-template-columns: 1fr; }
  .all-services { padding: 1.5rem; }
  .about-mark { min-height: 300px; box-shadow: 11px 11px 0 var(--gold); }
  .contact-actions a { grid-template-columns: 82px 1fr auto; gap: .5rem; }
  .contact-actions strong { font-size: 1rem; }
  footer { grid-template-columns: 1fr; padding-bottom: 3rem; }
  .footer-socials { flex-wrap: wrap; }
  footer > p { grid-column: auto; }
  .mobile-actions { position: fixed; z-index: 100; left: 0; right: 0; bottom: 0; height: 68px; display: grid; grid-template-columns: repeat(3,1fr); background: #0c0c0c; border-top: 1px solid var(--gold); box-shadow: 0 -10px 35px rgba(0,0,0,.4); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: .4rem; border-right: 1px solid var(--line); color: var(--white); font-family: var(--display); font-size: 1rem; font-weight: 800; text-transform: uppercase; }
  .mobile-actions a:first-child { color: var(--black); background: var(--gold); }
  .mobile-actions span { font-family: var(--body); }
}

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