:root {
  /* Brand colors pulled from the flyer */
  --brand-green-light: #8caf7c;  /* logo circle */
  --brand-green-dark: #779769;   /* accent green */
  --text-main: #111111;
  --text-muted: #555555;
  --page-bg: #f2f2f2;
}

/* Reset-ish */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica,
    Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text-main);
  line-height: 1.5;
}

/* Main layout */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.card {
  max-width: 1500px;     /* was 1200px — now larger */
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  padding: 32px 36px 40px;  /* slightly larger padding */
}

/* Columns */

.left-column {
  flex: 1.25;
  display: flex;
  flex-direction: column;
  margin-right: 30px;
}

.content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
}

/* Hero image / quote */

.hero {
  position: relative;
  min-height: 460px; /* taller hero for more impact */
  background: url("desert-hero.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-inner {
  position: relative;
  padding: 48px 48px 40px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Auto-scaling quote text */
.hero-quote {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: left;

  /* Auto-scale between mobile & large desktop */
  font-size: clamp(1.5rem, 1.2vw + 1.5rem, 2.6rem);
}

.hero-tagline {
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Brand header (logo + name + phone + address) */

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.logo-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: url("logo-tree.png") center center / cover no-repeat;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 1.05rem;
  margin-top: -4px;
  font-weight: 600;
}

.phone {
  margin-top: 8px;
  font-size: 2.1rem;
  font-weight: 800;
}

.address {
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Body copy */

.copy h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.copy p {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: left;
}

/* Hours */

.hours {
  margin-top: 22px;
  font-size: 0.86rem;
}

.hours-title {
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 6px;
}

.hours span {
  display: block;
}

/* Responsive adjustments */

@media (max-width: 960px) {
  .card {
    flex-direction: column;
  }

  .left-column {
    margin-right: 0;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .hero {
    min-height: 380px;
  }

  .hero-inner {
    padding: 32px 24px;
    align-items: flex-end; /* pushes text lower in the image */
  }

  .hero-quote {
    text-align: left;
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  .brand-name {
    font-size: 2rem;
  }

  .phone {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .page-wrapper {
    padding: 12px;
  }

  .card {
    padding: 16px;
  }

  .hero {
    min-height: 320px;
  }

  .hero-inner {
    padding: 24px 18px;
    align-items: flex-end;
  }

  .hero-quote {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    line-height: 1.25;
  }

  .hero-tagline {
    font-size: 0.8rem;
    padding: 8px 4px 0;
  }

  .brand {
    align-items: flex-start;
  }

  .logo-circle {
    width: 80px;
    height: 80px;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .phone {
    font-size: 1.5rem;
  }
}

