/* Black Dog Property Guardians - Rustic Professional Styles */
:root {
  --forest: #1f3a2b;
  --forest-deep: #173024;
  --pine: #2f5a40;
  --gold: #c8a24c;
  --gold-dark: #9f7b2d;
  --cream: #f7f2e7;
  --clay: #d9c8a7;
  --ink: #1d1a15;
  --shadow: 0 18px 40px rgba(16, 24, 18, 0.18);
  --radius: 16px;
  --sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: "Merriweather", "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, #fbf6ec 0%, #efe6d4 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  font-weight: 700;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #1e3a2f;
  border-bottom: 1px solid rgba(200, 162, 76, 0.35);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(16, 24, 18, 0.18);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.5px;
  background: transparent;
}

.logo-mark {
  width: 150px;
  height: auto;
  border: 0;
  background: transparent;
  object-fit: contain;
  display: block;
}

.nav-phone {
  color: var(--cream);
  font-weight: 700;
  border: 1px solid rgba(200, 162, 76, 0.5);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(200, 162, 76, 0.08);
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--cream);
  font-size: 15px;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--gold);
}

.hero {
  padding: 80px 24px 64px;
  background:
    linear-gradient(120deg, rgba(31, 58, 43, 0.94), rgba(31, 58, 43, 0.6)),
    radial-gradient(circle at top right, rgba(200, 162, 76, 0.35), transparent 45%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 6px, transparent 6px 16px);
  color: var(--cream);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-centered {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 36px;
  justify-items: center;
}

.hero-tagline {
  max-width: 720px;
  margin-top: -4px;
  margin-bottom: 4px;
}

.hero-subline {
  font-style: italic;
  font-weight: 600;
  color: rgba(247, 242, 231, 0.9);
  font-size: 16px;
  margin-top: 2px;
  margin-bottom: 6px;
}
.hero-logo {
  width: clamp(180px, 24vw, 220px);
  height: auto;
  padding: 10px;
  margin-bottom: 16px;
  border-radius: 16px;
  border: 2px solid rgba(200, 162, 76, 0.7);
  background: rgba(247, 242, 231, 0.92);
  display: block;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.hero p {
  margin-bottom: 8px;
  font-size: 18px;
  max-width: 560px;
}

.hero-card {
  background: rgba(247, 242, 231, 0.12);
  border: 1px solid rgba(200, 162, 76, 0.55);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.section {
  padding: 64px 24px;
}

.section.alt {
  background: #f1e7d3;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 16px;
  color: var(--forest);
}

.section p {
  max-width: 820px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--cream);
  border: 1px solid rgba(36, 71, 52, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--pine);
}

.owner-photo {
  display: grid;
  place-items: center;
}

.photo-placeholder {
  width: 100%;
  min-height: 280px;
  border-radius: 20px;
  border: 2px dashed rgba(31, 58, 43, 0.35);
  background: linear-gradient(135deg, rgba(47, 90, 64, 0.15), rgba(200, 162, 76, 0.2));
  display: grid;
  place-items: center;
  color: var(--forest);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 162, 76, 0.2);
  color: var(--gold-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #2b2310;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: rgba(31, 58, 43, 0.96);
  color: var(--cream);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(31, 58, 43, 0.12);
}

.pricing-table th {
  background: var(--forest);
  color: var(--cream);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.form label {
  font-weight: 600;
  color: var(--forest);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 58, 43, 0.2);
  background: #fff;
  font-family: inherit;
}

.form textarea {
  resize: vertical;
}

.form button {
  justify-self: start;
}

.service-area {
  margin-top: 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(36, 71, 52, 0.18);
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
  justify-content: center;
}

.service-area img,\n.service-area svg {\n  width: min(520px, 100%);\n  height: auto;\n  display: block;\n}\n\n.service-area-image {\n  border-radius: 16px;\n  border: 1px solid rgba(36, 71, 52, 0.18);\n  box-shadow: var(--shadow);\n}\n
.map-frame {
  fill: #f7f0e1;
  stroke: rgba(31, 58, 43, 0.2);
  stroke-width: 2;
}

.florida-outline {
  fill: rgba(47, 90, 64, 0.12);
  stroke: rgba(31, 58, 43, 0.7);
  stroke-width: 2.5;
}

.county-marker {
  fill: rgba(200, 162, 76, 0.85);
  stroke: rgba(159, 123, 45, 1);
  stroke-width: 2;
}

.county-label {
  font-family: var(--sans);
  font-size: 13px;
  fill: var(--forest);
  font-weight: 700;
}

.map-label {
  font-family: var(--sans);
  font-size: 13px;
  fill: var(--forest);
  font-weight: 700;
}

.footer {
  margin-top: auto;
  padding: 32px 24px;
  background: #1e3a2f;
  color: var(--cream);
  text-align: center;
  font-size: 14px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.footer-block {
  display: grid;
  gap: 6px;
}

.footer a {
  color: var(--cream);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer a .icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .nav-phone {
    align-self: flex-start;
  }
  .hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-centered {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 36px;
  justify-items: center;
}

.hero-tagline {
  max-width: 720px;
  margin-top: -4px;
  margin-bottom: 4px;
}

.hero-subline {
  font-style: italic;
  font-weight: 600;
  color: rgba(247, 242, 231, 0.9);
  font-size: 16px;
  margin-top: 2px;
  margin-bottom: 6px;
}
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav-phone {
  color: var(--cream);
  font-weight: 700;
  border: 1px solid rgba(200, 162, 76, 0.5);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(200, 162, 76, 0.08);
  letter-spacing: 0.4px;
}

.nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .hero {
    padding: 64px 16px 48px;
  }

  .map-label {
    font-size: 11px;
  }
}









.floating-call {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #2b2310;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(159, 123, 45, 0.9);
}

@media (min-width: 901px) {
  .floating-call {
    display: none;
  }
}



