/* ===========================
   Guardian Angels Property — Design Tokens
   Matches the real brand: gold/amber, black, white. Matches the
   trademarked logo exactly (#FCBA1E gold ring, black keyhole).
   =========================== */
:root {
  --gold: #FCBA1E;
  --gold-dark: #E0A00F;
  --black: #16130E;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --gray: #5C5C5C;
  --border: #E5E5E5;
  --offwhite: #FAFAF8;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1180px;
  --edge: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

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

/* ===========================
   Header
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 0 16px;
  position: relative;
}
.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-link img {
  height: 64px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold-dark); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-dark); }
.nav-cta:hover { background: var(--gold-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  top: 18px;
  right: var(--edge);
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,19,14,0.72) 0%, rgba(22,19,14,0.5) 60%, rgba(22,19,14,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 90px 0;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.25;
  margin-bottom: 22px;
}
.hero-lede {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.94);
}
.hero-actions { margin-top: 30px; }

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost { border-color: var(--gold); color: var(--black); background: var(--gold); }
.btn-ghost:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ===========================
   Section basics
   =========================== */
.section { padding: 80px 0; }
.section-alt { background: var(--offwhite); }
.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 20px;
}
.section-lede {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 680px;
  margin-bottom: 40px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===========================
   Locations strip
   =========================== */
.locations {
  background: var(--black);
  padding: 26px 0;
}
.locations-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ===========================
   Image + text split
   =========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split img { border-radius: 6px; width: 100%; }
.split-text p { margin-bottom: 16px; color: var(--ink); }

/* ===========================
   Process steps
   =========================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
}
.process-step img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

/* ===========================
   Eyebrow label
   =========================== */
.eyebrow-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

/* ===========================
   FAQ page
   =========================== */
.faq-group {
  margin-bottom: 48px;
}
.faq-group .eyebrow-label {
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  color: var(--gray);
  font-size: 0.96rem;
  margin-top: 14px;
  max-width: 680px;
}
.faq-item a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* ===========================
   Risk grid (Property Services)
   =========================== */
.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  margin-top: 44px;
}
.risk-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.risk-item p {
  color: var(--gray);
  font-size: 0.96rem;
}

/* ===========================
   Process list (Property Services)
   =========================== */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.process-list li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.process-list-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
}
.process-list h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.process-list p {
  color: var(--gray);
  font-size: 0.95rem;
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
}

/* ===========================
   Cards (services etc)
   =========================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 30px;
}
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.card p { color: var(--gray); font-size: 0.95rem; }

/* ===========================
   Contact CTA band
   =========================== */
.cta-band {
  background: var(--white);
  padding: 70px 0;
  text-align: center;
  color: var(--black);
  border-top: 1px solid var(--border);
}
.cta-band h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 24px;
}

/* ===========================
   Footer
   =========================== */
.footer-photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.site-footer {
  background: var(--white);
  color: rgba(26,26,26,0.85);
  padding: 50px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo img { height: 56px; margin-bottom: 6px; }
.footer-tagline { font-weight: 500; color: var(--black); }
.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.92rem;
}
.footer-contact a:hover { color: var(--gold-dark); }
.footer-fine {
  font-size: 0.82rem;
  color: rgba(26,26,26,0.55);
  margin-top: 10px;
}

/* ===========================
   Case Studies / Proud Accomplishments
   =========================== */
.cs-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.cs-tag {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}
.cs-rule {
  height: 3px;
  background: #E8A722;
  margin-top: 24px;
  border-radius: 2px;
}
.cs-rule-thin {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
  border-radius: 0;
}

.cs-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px;
  margin-bottom: 48px;
}
.cs-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8A722;
  margin-bottom: 10px;
}
.cs-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 600;
  color: var(--gray);
  line-height: 1.3;
}
.cs-subtitle {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 14px;
  line-height: 1.35;
}
.cs-card p {
  color: var(--ink);
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.cs-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}
.cs-meta-grid > div { display: flex; flex-direction: column; gap: 4px; }
.cs-meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E8A722;
}
.cs-meta-value { color: var(--gray); font-size: 0.95rem; }

.cs-outcomes {
  list-style: none;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs-outcomes li {
  border-left: 3px solid #E8A722;
  padding-left: 16px;
  color: var(--gray);
  font-size: 0.95rem;
}

.cs-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 20px 0 32px;
}
.cs-result {
  border-top: 2px solid #E8A722;
  padding: 16px 0;
}
.cs-result-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #E8A722;
}
.cs-result-label {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 4px;
}

.cs-quote {
  border-left: 3px solid #E8A722;
  padding: 4px 0 4px 22px;
  margin: 0;
  font-style: italic;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.7;
}
.cs-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.cs-inline-img {
  width: 100%;
  border-radius: 6px;
  margin: 24px 0;
}
.cs-inline-img-small {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.cs-steps {
  margin: 0 0 32px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs-steps li { color: var(--ink); font-size: 0.98rem; }
.cs-benefits {
  list-style: disc;
  margin: 0 0 24px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs-benefits li { color: var(--ink); font-size: 0.98rem; }

@media (max-width: 600px) {
  .cs-card { padding: 28px 22px; }
  .cs-meta-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Property Guardians page
   =========================== */
.pg-banner {
  background: #F4B43C;
  padding: 60px 0;
}
.pg-banner h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  max-width: 600px;
}

.pg-photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}
.pg-photo-square {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.pg-photo-arch {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}

.pg-wings-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--ink);
  display: inline-block;
  border-bottom: 4px solid #F4B43C;
  padding-bottom: 10px;
}

.pg-form {
  max-width: 640px;
  margin-top: 40px;
}
.pg-form-row-label {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.pg-form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pg-required {
  font-weight: 400;
  color: var(--gray);
  font-size: 0.85rem;
}
.pg-checkbox-row { margin-top: -6px; }
.pg-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}
.pg-checkbox-label input { width: 18px; height: 18px; }

.pg-locations-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--white);
  text-align: center;
  line-height: 1.4;
}

.pg-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.pg-location-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.pg-location-full {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 700px) {
  .pg-photo-grid { grid-template-columns: 1fr 1fr; }
  .pg-form-row-double { grid-template-columns: 1fr; }
  .pg-location-grid { grid-template-columns: 1fr; }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 40px var(--edge);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { color: var(--black); font-size: 1.4rem; font-weight: 600; }
  .main-nav a:hover, .main-nav a.active { color: var(--gold-dark); }
  .nav-toggle { display: flex; }

  .split { grid-template-columns: 1fr; }
  .split-reverse { direction: ltr; }
  .process-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-content { padding: 60px 0; }
  .footer-contact { flex-direction: column; gap: 10px; }
}
