@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════
   VARIABLES — EDITORIAL PALETTE
═══════════════════════════════════════ */
:root {
  --black:     #000000;
  --near-black:#111111;
  --ink:       #1a1a1a;
  --gray-dk:   #333333;
  --gray:      #666666;
  --gray-lt:   #999999;
  --border:    #e0e0e0;
  --border-lt: #f0f0f0;
  --cream:     #F8F8F6;
  --white:     #ffffff;
  --gold:      #C5A46D;
  --gold-lt:   #d4b87e;
  --gold-dk:   #a8884e;
  --nav-h:     64px;
  --max:       1280px;
  --serif:     'Playfair Display', 'Georgia', serif;
  --sans:      'Inter', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ═══════════════════════════════════════
   COOKIE BAR
═══════════════════════════════════════ */
#cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--near-black); border-top: 1px solid #333;
  z-index: 9998; padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: .8rem; color: #aaa; line-height: 1.55;
  transform: translateY(0); transition: transform .4s ease;
}
#cookie-bar.hidden { transform: translateY(115%); }
#cookie-bar p { max-width: 700px; }
#cookie-bar a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .2s; }
#cookie-bar a:hover { border-bottom-color: var(--gold); }
.ck-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-ck-yes {
  background: var(--gold); color: var(--black); border: none;
  padding: 8px 20px; font-size: .74rem; font-weight: 600;
  letter-spacing: .06em; font-family: var(--sans); transition: background .2s;
}
.btn-ck-yes:hover { background: var(--gold-lt); }
.btn-ck-no {
  background: transparent; color: #666;
  border: 1px solid #444;
  padding: 8px 20px; font-size: .74rem; letter-spacing: .06em;
  font-family: var(--sans); transition: all .2s;
}
.btn-ck-no:hover { border-color: #888; color: #ccc; }

/* ═══════════════════════════════════════
   NAVIGATION — EDITORIAL MASTHEAD
═══════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.06); }

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 700; letter-spacing: .02em;
  color: var(--black);
}
.nav-logo-tag {
  font-size: .56rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .73rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--black) !important; color: var(--white) !important;
  padding: 9px 22px; font-size: .72rem !important;
  font-weight: 600 !important; letter-spacing: .1em !important;
  border: 1px solid var(--black); transition: all .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--white) !important; color: var(--black) !important; }

.nav-phone {
  font-size: .78rem !important; font-weight: 600 !important;
  color: var(--black) !important; letter-spacing: .04em;
  display: flex; align-items: center; gap: 6px;
}
.nav-phone svg { color: var(--gold); }
.nav-phone::after { display: none !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px; background: var(--black);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 28px 40px; z-index: 999; flex-direction: column; gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray); transition: color .2s;
}
.mobile-menu a:hover { color: var(--black); }

/* ═══════════════════════════════════════
   MODAL POPUP — EDITORIAL STYLE
═══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.65);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s; padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); max-width: 600px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(24px); transition: transform .35s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-head {
  background: var(--black); padding: 36px 44px 28px;
  position: relative; border-top: 3px solid var(--gold);
}
.modal-head-label {
  font-size: .65rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 10px;
}
.modal-head h2 {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 8px;
}
.modal-head p { font-size: .82rem; color: #888; font-weight: 300; line-height: 1.6; }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: #555;
  font-size: 1.2rem; transition: color .2s; padding: 4px;
}
.modal-close:hover { color: var(--white); }
.modal-body { padding: 36px 44px; }
.mf { display: flex; flex-direction: column; gap: 16px; }
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mf-g { display: flex; flex-direction: column; gap: 5px; }
.mf-g label {
  font-size: .65rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gray);
}
.mf-g input, .mf-g select, .mf-g textarea {
  background: var(--cream); border: 1px solid var(--border);
  padding: 11px 14px; font-family: var(--sans);
  font-size: .87rem; color: var(--ink); outline: none;
  transition: border-color .2s; width: 100%; resize: none;
}
.mf-g input:focus, .mf-g select:focus, .mf-g textarea:focus { border-color: var(--gold); }
.mf-g textarea { min-height: 80px; }
.mf-consent { display: flex; gap: 10px; align-items: flex-start; }
.mf-consent input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); width: 14px; height: 14px; }
.mf-consent label { font-size: .77rem; color: var(--gray); line-height: 1.6; }
.mf-consent label a { color: var(--gold-dk); border-bottom: 1px solid transparent; transition: border-color .2s; }
.mf-consent label a:hover { border-bottom-color: var(--gold-dk); }
.mf-submit {
  background: var(--black); color: var(--white); border: 1px solid var(--black);
  padding: 13px; width: 100%; font-family: var(--sans);
  font-size: .82rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; transition: all .25s;
}
.mf-submit:hover { background: var(--white); color: var(--black); }
.mf-note { font-size: .72rem; color: var(--gray-lt); text-align: center; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-black {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white);
  border: 1px solid var(--black);
  padding: 13px 28px; font-family: var(--sans);
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; transition: all .25s;
}
.btn-black:hover { background: var(--white); color: var(--black); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  border: 1px solid var(--gold);
  padding: 13px 28px; font-family: var(--sans);
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; transition: all .25s;
}
.btn-gold:hover { background: var(--gold-lt); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
  padding: 12px 26px; font-family: var(--sans);
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; transition: all .25s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--black);
  border: 1px solid var(--black);
  padding: 12px 26px; font-family: var(--sans);
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; transition: all .25s;
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ═══════════════════════════════════════
   EDITORIAL HELPERS
═══════════════════════════════════════ */
.kicker {
  font-size: .65rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.kicker::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

.display-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -.02em;
  color: var(--black);
}
.display-title em { font-style: italic; color: var(--gold-dk); }

.deck {
  font-size: 1rem; color: var(--gray); line-height: 1.8;
  max-width: 560px; font-weight: 300;
}

.thin-rule { height: 1px; background: var(--border); margin: 0; }
.gold-rule { height: 2px; background: var(--gold); width: 40px; margin: 16px 0; }

.page-body { padding-top: var(--nav-h); }
.no-pad { padding-top: 0; }

/* ═══════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h)); overflow: hidden;
}
.hero-editorial {
  background: var(--black);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 72px 56px; position: relative; overflow: hidden;
}
.hero-editorial::before {
  content: 'ROOFING'; font-family: var(--serif);
  font-size: 14rem; font-weight: 900; color: rgba(255,255,255,.03);
  position: absolute; bottom: -30px; left: -20px; line-height: 1;
  pointer-events: none; letter-spacing: -.04em;
}
.hero-issue {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900; line-height: .95; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 24px;
}
.hero-h1 span { font-style: italic; color: var(--gold-lt); }
.hero-deck {
  font-size: .92rem; color: #888; line-height: 1.85;
  max-width: 400px; margin-bottom: 40px; font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex; gap: 40px; padding-top: 32px;
  border-top: 1px solid #222; flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.hero-stat-num sup { font-size: 1rem; color: var(--gold); }
.hero-stat-label { font-size: .65rem; color: #555; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

.hero-img { position: relative; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.78); transition: transform 10s ease; }
.hero-img:hover img { transform: scale(1.03); }
.hero-img-caption {
  position: absolute; bottom: 28px; left: 28px;
  background: rgba(0,0,0,.82); padding: 16px 20px;
  border-left: 2px solid var(--gold); max-width: 280px;
}
.hero-img-caption p {
  font-family: var(--serif); font-size: .9rem; font-style: italic;
  color: #ccc; line-height: 1.55;
}
.hero-img-caption cite {
  display: block; margin-top: 8px;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-style: normal; font-family: var(--sans);
}

/* ═══════════════════════════════════════
   EDITORIAL TICKER / STRIP
═══════════════════════════════════════ */
.ticker-strip {
  background: var(--gold); padding: 12px 40px;
  display: flex; align-items: center; gap: 32px; overflow: hidden;
}
.ticker-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--black); white-space: nowrap; flex-shrink: 0;
}
.ticker-items {
  display: flex; gap: 40px; overflow: hidden;
}
.ticker-items span {
  font-size: .75rem; color: var(--black); white-space: nowrap;
  font-weight: 500; letter-spacing: .04em;
}
.ticker-sep { color: rgba(0,0,0,.35); }

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services-section { padding: 100px 40px; max-width: var(--max); margin: 0 auto; }
.section-masthead {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 60px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.srv-card { background: var(--white); padding: 36px 28px; transition: background .25s; }
.srv-card:hover { background: var(--cream); }
.srv-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 700;
  color: var(--border-lt); line-height: 1; margin-bottom: 12px;
  transition: color .3s;
}
.srv-card:hover .srv-num { color: var(--gold); }
.srv-title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--black); margin-bottom: 12px; line-height: 1.25;
}
.srv-desc { font-size: .84rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.srv-link {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dk); font-weight: 600; border-bottom: 1px solid var(--border);
  padding-bottom: 2px; display: inline-block; transition: border-color .2s, color .2s;
}
.srv-link:hover { border-color: var(--gold-dk); color: var(--black); }

/* ═══════════════════════════════════════
   ABOUT SPLIT
═══════════════════════════════════════ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }
.about-img-col { position: relative; overflow: hidden; min-height: 560px; }
.about-img-col img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.82); }
.about-img-col::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--cream) 100%);
}
.about-img-badge {
  position: absolute; bottom: 36px; right: 0;
  background: var(--gold); padding: 20px 24px; text-align: center; z-index: 1;
}
.about-img-badge-num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--black); line-height: 1;
}
.about-img-badge-label {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: #333; margin-top: 4px; font-weight: 600;
}
.about-text-col {
  background: var(--cream); padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text-col h2 {
  font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--black); line-height: 1.1; margin-bottom: 20px;
}
.about-text-col p { font-size: .88rem; color: var(--gray); line-height: 1.9; margin-bottom: 16px; font-weight: 300; }
.about-pullquote {
  border-left: 2px solid var(--gold); padding: 16px 20px;
  margin: 20px 0; background: var(--white);
}
.about-pullquote p {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  color: var(--black); line-height: 1.6; margin: 0;
}

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process-section {
  padding: 100px 40px; background: var(--black);
}
.process-inner { max-width: var(--max); margin: 0 auto; }
.process-header { margin-bottom: 64px; border-bottom: 1px solid #222; padding-bottom: 32px; }
.process-header .kicker { color: var(--gold); }
.process-header .kicker::before { background: var(--gold); }
.process-header .display-title { color: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-card {
  padding: 40px 32px; border-right: 1px solid #1a1a1a;
  transition: background .25s;
}
.process-card:last-child { border-right: none; }
.process-card:hover { background: #0a0a0a; }
.process-num {
  font-family: var(--serif); font-size: 5rem; font-weight: 900;
  color: #1a1a1a; line-height: 1; margin-bottom: 16px; transition: color .3s;
}
.process-card:hover .process-num { color: var(--gold); }
.process-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.process-desc { font-size: .82rem; color: #555; line-height: 1.75; font-weight: 300; }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing-section { padding: 100px 40px; background: var(--cream); }
.pricing-inner { max-width: var(--max); margin: 0 auto; }
.pricing-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }

.plan { background: var(--white); display: flex; flex-direction: column; position: relative; }
.plan.featured { background: var(--black); }
.plan-head { padding: 36px 32px 24px; border-bottom: 1px solid var(--border-lt); }
.plan.featured .plan-head { border-bottom-color: #1a1a1a; }
.plan-badge {
  display: inline-block; background: var(--gold); color: var(--black);
  font-size: .6rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; padding: 4px 12px; margin-bottom: 14px;
}
.plan-tier {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dk); font-weight: 600; margin-bottom: 10px;
}
.plan.featured .plan-tier { color: var(--gold-lt); }
.plan-price {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: var(--black); line-height: 1; display: flex; align-items: flex-start; gap: 3px;
}
.plan.featured .plan-price { color: var(--white); }
.plan-price sup { font-family: var(--sans); font-size: 1rem; font-weight: 400; margin-top: 10px; }
.plan-period { font-size: .74rem; color: var(--gray-lt); margin-top: 6px; margin-bottom: 12px; }
.plan.featured .plan-period { color: #555; }
.plan-desc { font-size: .82rem; color: var(--gray); line-height: 1.7; font-weight: 300; }
.plan.featured .plan-desc { color: #666; }
.plan-body { padding: 28px 32px 36px; flex: 1; display: flex; flex-direction: column; }
.plan-features { display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 32px; }
.plan-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .83rem; color: var(--ink); line-height: 1.45;
}
.plan.featured .plan-feat { color: #ccc; }
.feat-ok { flex-shrink: 0; color: var(--gold-dk); margin-top: 2px; }
.plan.featured .feat-ok { color: var(--gold-lt); }
.feat-no { flex-shrink: 0; color: var(--border); margin-top: 2px; }
.feat-na { color: var(--gray-lt); text-decoration: line-through; }
.plan.featured .feat-na { color: #333; }
.plan-btn .btn-black { width: 100%; justify-content: center; }
.plan-btn .btn-gold { width: 100%; justify-content: center; }
.plan-btn .btn-outline-dark { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-section { padding: 100px 40px; }
.gallery-inner { max-width: var(--max); margin: 0 auto; }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--border); gap: 24px; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 3px; }
.g-item { overflow: hidden; position: relative; background: var(--black); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s, filter .4s; filter: brightness(.88); }
.g-item:hover img { transform: scale(1.04); filter: brightness(.65); }
.g-item.tall { grid-row: 1 / 3; }
.g-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px; background: linear-gradient(to top, rgba(0,0,0,.82), transparent); opacity: 0; transition: opacity .3s; }
.g-item:hover .g-cap { opacity: 1; }
.g-cap span { font-family: var(--serif); font-size: .88rem; font-style: italic; color: #ddd; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-section { background: var(--cream); padding: 100px 40px; }
.testi-inner { max-width: var(--max); margin: 0 auto; }
.testi-header { margin-bottom: 60px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.testi-card { }
.testi-card-rule { height: 2px; background: var(--gold); width: 30px; margin-bottom: 20px; }
.testi-stars { color: var(--gold); font-size: .85rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text {
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: var(--black); line-height: 1.75; margin-bottom: 22px;
}
.testi-name { font-size: .78rem; font-weight: 600; color: var(--black); text-transform: uppercase; letter-spacing: .08em; }
.testi-loc { font-size: .72rem; color: var(--gray-lt); margin-top: 3px; }

/* ═══════════════════════════════════════
   EMERGENCY BAND
═══════════════════════════════════════ */
.emergency-band {
  background: var(--black); border-top: 2px solid var(--gold);
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.emergency-left { display: flex; align-items: center; gap: 16px; }
.emergency-title {
  font-family: var(--serif); font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700; color: var(--white); letter-spacing: -.01em;
}
.emergency-sub { font-size: .8rem; color: #666; margin-top: 4px; font-weight: 300; }
.emergency-phone {
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--gold); letter-spacing: -.01em;
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.cta-img { overflow: hidden; }
.cta-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); }
.cta-content {
  background: var(--black); padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 2px solid var(--gold);
}
.cta-content h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.cta-content h2 em { font-style: italic; color: var(--gold-lt); }
.cta-content p { font-size: .9rem; color: #666; line-height: 1.85; max-width: 380px; margin-bottom: 36px; font-weight: 300; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER — EDITORIAL STYLE
═══════════════════════════════════════ */
.site-footer { background: var(--black); }
.footer-masthead {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px;
  border-bottom: 1px solid #1a1a1a;
}
.footer-logo-name-lg {
  font-family: var(--serif); font-size: 2rem; font-weight: 900;
  color: var(--white); letter-spacing: -.02em;
}
.footer-tagline { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding: 52px 40px 44px;
  border-bottom: 1px solid #111;
}
.footer-desc { font-size: .8rem; color: #444; line-height: 1.85; max-width: 280px; margin-bottom: 16px; font-weight: 300; }
.footer-cert {
  display: inline-flex; align-items: center; gap: 6px;
  background: #0a0a0a; border-left: 2px solid var(--gold);
  padding: 6px 12px; font-size: .65rem; color: #555;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  margin-bottom: 6px;
}
.footer-col-title {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .8rem; color: #444; transition: color .2s; font-weight: 300; }
.footer-links a:hover { color: var(--white); }
.footer-contact-line { font-size: .8rem; color: #444; margin-bottom: 8px; line-height: 1.6; font-weight: 300; }
.footer-contact-line a { color: #666; transition: color .2s; }
.footer-contact-line a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: .7rem; color: #2a2a2a; letter-spacing: .04em; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: .68rem; color: #2a2a2a; letter-spacing: .06em; transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; overflow: hidden; }
.ph-bg { position: absolute; inset: 0; }
.ph-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.28); }
.ph-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--black) 0%, rgba(0,0,0,.5) 50%, transparent 100%); }
.ph-content { position: relative; z-index: 1; padding: 80px 40px 60px; max-width: 760px; }
.ph-content .kicker { margin-bottom: 14px; }
.ph-content h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700; color: var(--white); line-height: 1.02;
  letter-spacing: -.02em; margin-bottom: 16px;
}
.ph-content h1 em { font-style: italic; color: var(--gold-lt); }
.ph-content p { font-size: .92rem; color: #888; max-width: 540px; line-height: 1.8; font-weight: 300; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-story { padding: 100px 40px; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { position: relative; }
.about-img1 { width: 78%; aspect-ratio: 3/4; object-fit: cover; filter: brightness(.88); }
.about-img2 { position: absolute; bottom: -28px; right: 0; width: 52%; aspect-ratio: 1.1; object-fit: cover; border: 5px solid var(--white); }
.about-text h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--black); margin-bottom: 20px; line-height: 1.1; }
.about-text p { font-size: .88rem; color: var(--gray); line-height: 1.9; margin-bottom: 16px; font-weight: 300; }
.about-values { background: var(--cream); padding: 100px 40px; }
.about-values-inner { max-width: var(--max); margin: 0 auto; }
.about-values-head { margin-bottom: 56px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.val-card { background: var(--white); padding: 40px 32px; transition: background .25s; }
.val-card:hover { background: var(--cream); }
.val-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 900; color: var(--border-lt); line-height: 1; margin-bottom: 14px; transition: color .3s; }
.val-card:hover .val-num { color: var(--gold); }
.val-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.val-desc { font-size: .84rem; color: var(--gray); line-height: 1.8; font-weight: 300; }
.about-stats { background: var(--gold); padding: 64px 40px; }
.about-stats-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(0,0,0,.1); }
.astat { background: var(--gold); padding: 36px 28px; text-align: center; }
.astat-num { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--black); line-height: 1; margin-bottom: 6px; }
.astat-label { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: #333; font-weight: 600; }
.certs-section { padding: 80px 40px; }
.certs-inner { max-width: var(--max); margin: 0 auto; }
.certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 48px; }
.cert-card { background: var(--white); padding: 28px 24px; display: flex; gap: 14px; transition: background .25s; border-left: 2px solid transparent; }
.cert-card:hover { background: var(--cream); border-left-color: var(--gold); }
.cert-icon { font-size: 1.8rem; flex-shrink: 0; }
.cert-title { font-family: var(--serif); font-size: .95rem; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.cert-desc { font-size: .8rem; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* ═══════════════════════════════════════
   BLOG — EDITORIAL LAYOUT
═══════════════════════════════════════ */
.blog-section { padding: 80px 40px; max-width: var(--max); margin: 0 auto; }
.blog-masthead { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; padding-bottom: 20px; border-bottom: 1px solid var(--border); gap: 24px; }
/* FEATURED blog card */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--black); margin-bottom: 3px; transition: opacity .3s; }
.blog-featured:hover { opacity: .94; }
.blog-feat-img { overflow: hidden; }
.blog-feat-img img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; filter: brightness(.8); transition: transform .6s; }
.blog-featured:hover .blog-feat-img img { transform: scale(1.03); }
.blog-feat-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: flex-end; }
.blog-feat-cat {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.blog-feat-title {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin-bottom: 14px; letter-spacing: -.01em;
}
.blog-feat-excerpt { font-size: .85rem; color: #888; line-height: 1.75; margin-bottom: 24px; font-weight: 300; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-feat-meta { font-size: .72rem; color: #555; display: flex; align-items: center; gap: 12px; }
.blog-feat-meta span { color: #333; }
/* Blog grid cards */
.blog-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.blog-card { background: var(--white); overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--border-lt); transition: box-shadow .3s; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.06); }
.blog-card-img { overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .6s; filter: brightness(.9); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-cat { position: absolute; top: 0; left: 0; background: var(--gold); color: var(--black); font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 4px 12px; }
.blog-card-body { padding: 24px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: .7rem; color: var(--gray-lt); margin-bottom: 10px; }
.blog-card-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 10px; transition: color .2s; }
.blog-card:hover .blog-card-title { color: var(--gold-dk); }
.blog-card-excerpt { font-size: .82rem; color: var(--gray); line-height: 1.75; flex: 1; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; font-weight: 300; }
.read-more { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dk); font-weight: 600; border-bottom: 1px solid var(--border); padding-bottom: 2px; display: inline-block; transition: border-color .2s; }
.blog-card:hover .read-more { border-color: var(--gold-dk); }

/* ═══════════════════════════════════════
   BLOG DETAIL
═══════════════════════════════════════ */
.blog-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; max-width: 1100px; margin: 0 auto; padding: 72px 40px; align-items: start; }
.blog-article-kicker { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-dk); font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.blog-article-kicker::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold-dk); }
.blog-article h1 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; color: var(--black); line-height: 1.05; letter-spacing: -.02em; margin-bottom: 20px; }
.blog-article-meta { display: flex; align-items: center; gap: 16px; font-size: .76rem; color: var(--gray-lt); margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.blog-article-meta strong { color: var(--black); }
.blog-cover { width: 100%; aspect-ratio: 16/8; object-fit: cover; margin-bottom: 40px; }
.blog-article p { font-size: .94rem; color: var(--gray-dk); line-height: 1.95; margin-bottom: 24px; font-weight: 300; }
.blog-article h2 { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--black); margin: 48px 0 18px; line-height: 1.1; }
.blog-article h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--black); margin: 32px 0 12px; }
.blog-article blockquote { border-left: 2px solid var(--gold); padding: 18px 24px; margin: 32px 0; background: var(--cream); }
.blog-article blockquote p { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--black); margin: 0; line-height: 1.6; }
.blog-article .article-img { width: 100%; margin: 28px 0; }
.blog-article ul { margin: 16px 0 24px 24px; list-style: disc; }
.blog-article ul li { font-size: .92rem; color: var(--gray-dk); line-height: 1.85; margin-bottom: 8px; font-weight: 300; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); }
.article-tag { font-size: .64rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); border: 1px solid var(--border); padding: 5px 12px; transition: all .2s; }
.article-tag:hover { border-color: var(--gold); color: var(--gold-dk); }
.drop-cap::first-letter { font-family: var(--serif); font-size: 4.5rem; font-weight: 900; float: left; line-height: .8; margin: 4px 10px 0 0; color: var(--black); }

.blog-sidebar { position: sticky; top: 90px; }
.sidebar-widget { margin-bottom: 36px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.sidebar-widget:last-child { border-bottom: none; }
.sidebar-title { font-family: var(--serif); font-size: .9rem; font-weight: 700; color: var(--black); margin-bottom: 18px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.sidebar-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-lt); }
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post img { width: 58px; height: 58px; object-fit: cover; flex-shrink: 0; }
.sidebar-post-title { font-family: var(--serif); font-size: .84rem; font-weight: 600; color: var(--black); line-height: 1.35; transition: color .2s; }
.sidebar-post:hover .sidebar-post-title { color: var(--gold-dk); }
.sidebar-post-date { font-size: .68rem; color: var(--gray-lt); margin-top: 4px; }

.related-posts { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; }
.related-posts h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--black); margin-bottom: 24px; padding-top: 36px; border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; max-width: var(--max); margin: 60px auto 80px; padding: 0 40px; }
.contact-info { padding-right: 60px; }
.contact-info h2 { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--black); margin-bottom: 14px; line-height: 1.1; }
.contact-info p { font-size: .87rem; color: var(--gray); line-height: 1.85; margin-bottom: 32px; font-weight: 300; }
.c-details { display: flex; flex-direction: column; gap: 18px; }
.c-item { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 18px; border-bottom: 1px solid var(--border-lt); }
.c-item:last-child { border-bottom: none; }
.c-label { font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 3px; }
.c-val { font-size: .86rem; color: var(--ink); line-height: 1.6; }
.c-val a { color: var(--ink); transition: color .2s; }
.c-val a:hover { color: var(--gold-dk); }
.contact-form-box { background: var(--cream); padding: 52px 48px; border-top: 2px solid var(--gold); }
.contact-form-box h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--black); margin-bottom: 28px; }
.cf { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-g { display: flex; flex-direction: column; gap: 5px; }
.cf-g label { font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); }
.cf-g input, .cf-g select, .cf-g textarea { background: var(--white); border: 1px solid var(--border); padding: 11px 14px; font-family: var(--sans); font-size: .86rem; color: var(--ink); outline: none; transition: border-color .2s; width: 100%; resize: none; }
.cf-g input:focus, .cf-g select:focus, .cf-g textarea:focus { border-color: var(--gold); }
.cf-g textarea { min-height: 110px; }
.cf-consent-wrap { background: var(--white); border: 1px solid var(--border); border-left: 2px solid var(--gold); padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.cf-consent-title { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--black); }
.cf-consent-row { display: flex; gap: 10px; align-items: flex-start; }
.cf-consent-row input[type=checkbox] { margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); width: 14px; height: 14px; }
.cf-consent-row label { font-size: .76rem; color: var(--gray); line-height: 1.6; }
.cf-consent-row label a { color: var(--gold-dk); border-bottom: 1px solid transparent; transition: border-color .2s; }
.cf-consent-row label a:hover { border-bottom-color: var(--gold-dk); }
.cf-submit { background: var(--black); color: var(--white); border: 1px solid var(--black); padding: 13px; font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: all .25s; width: 100%; }
.cf-submit:hover { background: var(--white); color: var(--black); }

/* ═══════════════════════════════════════
   LEGAL
═══════════════════════════════════════ */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 80px 40px; }
.legal-updated { font-family: monospace; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 36px; font-weight: 600; }
.legal-wrap h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--black); margin: 52px 0 16px; line-height: 1.15; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--black); margin: 28px 0 12px; }
.legal-wrap p { font-size: .89rem; color: var(--gray); line-height: 1.9; margin-bottom: 14px; font-weight: 300; }
.legal-wrap p strong { color: var(--black); font-weight: 600; }
.legal-wrap ul { margin: 12px 0 20px 18px; list-style: disc; }
.legal-wrap li { font-size: .87rem; color: var(--gray); line-height: 1.85; margin-bottom: 8px; font-weight: 300; }
.legal-wrap a { color: var(--gold-dk); border-bottom: 1px solid transparent; transition: border-color .2s; }
.legal-wrap a:hover { border-bottom-color: var(--gold-dk); }
.legal-divider { width: 40px; height: 2px; background: var(--gold); margin: 44px 0; }
.legal-box { background: var(--cream); border-left: 2px solid var(--gold); padding: 18px 22px; margin: 20px 0; font-size: .84rem; color: var(--gray); line-height: 1.8; font-weight: 300; }
.legal-box strong { color: var(--black); }
.legal-box a { color: var(--gold-dk); }

/* ═══════════════════════════════════════
   BLOG ADMIN (hidden CMS)
═══════════════════════════════════════ */
.admin-wrap { max-width: 900px; margin: 0 auto; padding: 80px 40px; }
.admin-wrap h1 { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.admin-subtitle { font-size: .78rem; color: var(--gray); margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.admin-form { display: flex; flex-direction: column; gap: 20px; }
.af-g { display: flex; flex-direction: column; gap: 6px; }
.af-g label { font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); }
.af-g input, .af-g select, .af-g textarea {
  background: var(--cream); border: 1px solid var(--border);
  padding: 12px 16px; font-family: var(--sans);
  font-size: .88rem; color: var(--ink); outline: none;
  transition: border-color .2s; width: 100%;
}
.af-g input:focus, .af-g select:focus, .af-g textarea:focus { border-color: var(--gold); }
.af-g textarea { min-height: 180px; resize: vertical; }
.af-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-submit { background: var(--black); color: var(--white); border: 1px solid var(--black); padding: 13px 32px; font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: all .25s; cursor: pointer; }
.admin-submit:hover { background: var(--white); color: var(--black); }
.admin-msg { display: none; background: #f0f8f0; border: 1px solid #ccc; padding: 14px 18px; font-size: .84rem; color: #333; margin-top: 12px; }
.admin-msg.show { display: block; }
.admin-posts-list { margin-top: 60px; border-top: 1px solid var(--border); padding-top: 40px; }
.admin-posts-list h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--black); margin-bottom: 24px; }
.admin-post-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border-lt); gap: 20px; }
.admin-post-item-title { font-family: var(--serif); font-size: .95rem; font-weight: 600; color: var(--black); }
.admin-post-item-date { font-size: .73rem; color: var(--gray-lt); }
.admin-del-btn { background: none; border: 1px solid var(--border); color: var(--gray-lt); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; font-family: var(--sans); cursor: pointer; transition: all .2s; flex-shrink: 0; }
.admin-del-btn:hover { border-color: #c0392b; color: #c0392b; }
.admin-login { max-width: 420px; margin: 100px auto; padding: 0 40px; }
.admin-login h1 { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.admin-login p { font-size: .82rem; color: var(--gray); margin-bottom: 36px; }
.admin-notice { background: var(--cream); border-left: 2px solid var(--gold); padding: 10px 14px; font-size: .78rem; color: var(--gray); margin-top: 12px; display: none; }
.admin-notice.show { display: block; }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fu { animation: fadeUp .65s ease both; }
.fu1 { animation-delay: .08s; } .fu2 { animation-delay: .18s; }
.fu3 { animation-delay: .28s; } .fu4 { animation-delay: .38s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-img { min-height: 380px; }
  .services-grid, .blog-grid-3 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item.tall { grid-row: auto; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-img { min-height: 280px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-story { grid-template-columns: 1fr; gap: 60px; }
  .about-img2 { position: relative; width: 55%; margin-top: 16px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-inner { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; padding: 0 28px; }
  .contact-info { padding-right: 0; margin-bottom: 40px; }
  .pricing-header { grid-template-columns: 1fr; }
  .section-masthead { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-detail-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .af-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .services-section, .pricing-section, .gallery-section, .testi-section, .about-story, .about-values, .certs-section, .blog-section, .related-posts, .legal-wrap, .admin-wrap { padding-left: 20px; padding-right: 20px; }
  .services-grid, .pricing-grid, .values-grid, .blog-grid-3, .testi-grid, .certs-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .about-stats-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .site-footer .footer-masthead { padding: 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .site-footer .footer-bottom { padding: 16px 20px; }
  .ph-content { padding: 80px 20px 48px; }
  .mobile-menu { padding: 20px; }
  #cookie-bar { flex-direction: column; padding: 16px 20px; align-items: flex-start; }
  .mf-row, .cf-row { grid-template-columns: 1fr; }
  .modal-head { padding: 24px 24px 18px; }
  .modal-body { padding: 24px; }
  .hero-editorial { padding: 56px 24px; }
  .about-text-col { padding: 52px 24px; }
  .cta-content { padding: 52px 24px; }
  .process-section { padding: 72px 20px; }
  .about-stats { padding: 52px 20px; }
  .emergency-band { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .blog-feat-body { padding: 32px 24px; }
  .blog-detail-layout { padding: 48px 20px; }
  .footer-top { padding: 40px 20px 32px; }
}
