/* =========================
   Leave it to Lorrie
   Master Website Stylesheet
   ========================= */

/* ---------- Root / Brand ---------- */
:root {
  --bg: #fcf7f9;
  --white: #ffffff;
  --text: #4d3d45;
  --text-soft: #66565d;
  --text-muted: #7a6870;
  --heading: #7b5a68;
  --accent: #d9b8c4;
  --accent-hover: #e6c9d2;
  --accent-deep: #b58497;
  --border: #f0dfe6;
  --border-soft: #f3e4ea;
  --panel-soft: linear-gradient(135deg, #fff8fa 0%, #ffffff 100%);
  --shadow-soft: 0 12px 30px rgba(97, 74, 85, 0.08);
  --shadow-medium: 0 12px 30px rgba(97, 74, 85, 0.10);
  --shadow-hover: 0 18px 36px rgba(97, 74, 85, 0.16);

  --font-heading: "Georgia", "Times New Roman", serif;
  --font-body: Arial, sans-serif;

  --radius-lg: 24px;
  --radius-md: 22px;
  --radius-sm: 20px;

  --container-wide: 1240px;
  --container: 1000px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-heading);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ---------- Shared Layout ---------- */
.page-section,
.about-section,
.info-section {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 70px 20px;
}

.section-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 42px;
}

.soft-panel {
  background: var(--panel-soft);
}

.section-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.88rem;
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: normal;
  color: var(--heading);
  margin-bottom: 18px;
}

.section-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.section-text p:last-child {
  margin-bottom: 0;
}

.section-text ul {
  font-family: var(--font-body);
  color: var(--text-soft);
  padding-left: 20px;
  margin-top: 10px;
}

.section-text ul li {
  margin-bottom: 10px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.about-image-wrap img,
.section-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(97, 74, 85, 0.12);
}

/* ---------- Buttons ---------- */
.hero-button,
.button-primary {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: bold;
  padding: 12px 26px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero-button:hover,
.button-primary:hover {
  background-color: var(--accent-hover);
}

.text-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--accent-deep);
}

.text-link:hover {
  color: #8f6676;
}

.cta-wrap {
  text-align: center;
  margin-top: 28px;
}

.cta-note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ---------- Header / Hero ---------- */
.hero,
.page-header {
  position: relative;
  min-height: 500px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.hero::before,
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(77, 61, 69, 0.45),
    rgba(77, 61, 69, 0.30)
  );
  pointer-events: none;
}

.hero-content,
.page-header-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 900px;
  padding: 20px;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1,
.page-header-content h1 {
  font-size: 3.5rem;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.page-header-content h1 {
  margin-bottom: 12px;
}

.hero-content p,
.page-header-content p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Navigation ---------- */
nav {
  position: relative;
  z-index: 10;
  background-color: var(--white);
  padding: 20px 15px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(77, 61, 69, 0.06);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

nav ul li a {
  font-family: var(--font-body);
  color: #7a5b68;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent-deep);
  border-bottom: 2px solid var(--accent);
}

/* ---------- Homepage Intro ---------- */
.intro {
  max-width: var(--container);
  margin: 70px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.intro h2 {
  font-size: 2.3rem;
  font-weight: normal;
  color: var(--heading);
  margin-bottom: 18px;
}

.intro p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- Grid Cards ---------- */
.services-grid,
.grid-3 {
  max-width: var(--container-wide);
  margin: 50px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card,
.grid-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.grid-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card img,
.grid-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-content {
  padding: 24px 24px 28px;
}

.card-content h3 {
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--heading);
  margin-bottom: 12px;
}

.card-content p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.card-content a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--accent-deep);
}

.card-content a:hover {
  color: #8f6676;
}

/* ---------- Info Box / 2-column CTA ---------- */
.info-section {
  max-width: var(--container-wide);
  margin: 0 auto 80px;
  padding: 0 20px;
}

.info-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  background: var(--panel-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 42px;
  align-items: center;
}

.info-text h2 {
  font-size: 2.1rem;
  font-weight: normal;
  color: var(--heading);
  margin-bottom: 18px;
}

.info-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.info-highlights {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px;
}

.info-highlights h3 {
  font-size: 1.35rem;
  font-weight: normal;
  color: var(--heading);
  margin-bottom: 16px;
}

.info-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.info-highlights li {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-soft);
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}

.info-highlights li::before {
  content: "•";
  color: var(--accent);
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ---------- Footer ---------- */
footer {
  background-color: var(--white);
  text-align: center;
  padding: 28px 20px 40px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 20px;
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}

.max-760 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero,
  .page-header {
    min-height: 420px;
    padding: 50px 20px;
  }

  .hero-content h1,
  .page-header-content h1 {
    font-size: 3rem;
  }

  .services-grid,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .info-box {
    grid-template-columns: 1fr;
  }

  .about-image-wrap img,
  .section-image-wrap img {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-header {
    min-height: 300px;
    padding: 60px 20px;
  }

  .hero-content,
  .page-header-content {
    max-width: 100%;
    padding: 10px 0;
  }

  .hero-content h1,
  .page-header-content h1 {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .page-header-content h1 {
    margin-bottom: 12px;
  }

  .hero-content p,
  .page-header-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  nav ul {
    gap: 16px;
  }

  .intro {
    margin: 50px auto 30px;
  }

  .intro h2,
  .section-title,
  .info-text h2 {
    font-size: 1.8rem;
  }

  .intro p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .services-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section-card,
  .info-box {
    padding: 28px;
  }

  .card-content {
    padding: 22px;
  }
  .lead-form {
  margin-top: 24px;
}

.lead-form-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.lead-input {
  width: 280px;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid #e8d7de;
  border-radius: 30px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lead-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 184, 196, 0.18);
}

@media (max-width: 640px) {
  .lead-form-row {
    flex-direction: column;
    align-items: center;
  }

  .lead-input {
    width: 100%;
  }
}
}
.footer-badge {
  margin-top: 12px;
  text-align: center;
}