:root {
  color-scheme: light;
  --bg: #f3f4f6;
  --surface: #ffffff;
  --text: #111111;
  --muted: #4d4d4d;
  --accent: #d7263d;
  --accent-dark: #a61c2d;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

.hero {
  padding: 0.45rem 1.1rem 0.5rem;
  background: linear-gradient(120deg, #000000 0%, #1a1a1a 100%);
  color: #fff;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.logo-wrap {
  margin-bottom: 0.05rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  margin: 0 auto 0.1rem;
}

/* Make logo slightly smaller on narrow screens */
@media (max-width: 480px) {
  .logo {
    max-width: 74%;
  }
}

/* Top contact block next to logo */
.logo-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.top-contact {
  display: flex;
  gap: 0.2rem;
  align-items: center;
  justify-content: center;
}

.phone-large {
  color: #fff;
  font-weight: 900;
  font-size: clamp(0.85rem, 2.2vw, 1.4rem);
  text-decoration: none;
}

.btn-text-top {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1rem;
}

@media (min-width: 900px) {
  .hero-content { max-width: 980px; }
}

@media (max-width: 720px) {
  .logo { max-width: 76%; }
  .phone-large { font-size: 0.95rem; }
  .top-contact { flex-direction: column; gap: 0.4rem; }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ff6b6b;
}

.hero h1 {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-text-wide {
  width: 100%;
  margin-left: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.hero-text-wide p {
  margin: 0.2rem 0;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-actions {
  justify-content: center;
}

.contact-actions {
  justify-content: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.stats,
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: -1.5rem;
}

.stats div,
.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stats div {
  padding: 1.2rem 1.3rem;
}

.stats strong,
.card h3,
.panel h3 {
  display: block;
  margin-bottom: 0.3rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2,
.highlight-copy h2,
.contact h2,
.owner-copy h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin: 0;
}

.owner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.owner-photo {
  position: sticky;
  top: 1.5rem;
}

.owner-photo img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.owner-copy p:not(.eyebrow) {
  color: var(--muted);
  margin: 1rem 0 0;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 1.3rem;
}

.card p,
.highlight-copy p,
.contact p,
.panel p {
  color: var(--muted);
}

.highlight {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.panel {
  padding: 1.5rem;
  background: #fff5f6;
  border-color: #ffd7dc;
}

ul {
  padding-left: 1.1rem;
  color: var(--text);
}

.contact {
  text-align: center;
  padding-bottom: 4rem;
}

.contact-actions {
  margin-top: 1.25rem;
}

/* Make contact buttons more prominent */
.contact .btn-primary,
.contact .btn-secondary {
  font-size: 1.05rem;
  padding: 1rem 1.4rem;
}

/* Make the bottom "Text Us" button red like the primary call button */
.contact .btn-secondary {
  background: var(--accent);
  color: #fff;
  border: none;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 0.85rem;
  }

  .highlight {
    grid-template-columns: 1fr;
  }

  .owner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .owner-photo {
    position: static;
  }

  .hero-text-wide {
    padding: 0;
  }
}
