/* ================================
   Plant Peace LLC Website Styles
   3-page static website
   Brand accent: Pale Pink #fbf1f2
================================ */

:root {
  --pink: #fbf1f2;
  --pink-soft: rgba(251, 241, 242, 0.16);
  --pink-line: rgba(251, 241, 242, 0.34);
  --dark: #0d130f;
  --dark-2: #121b15;
  --green: #1b2b20;
  --green-2: #263c2d;
  --text: #f7f5ef;
  --muted: #c8c9c2;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(251, 241, 242, 0.10), transparent 25%),
    linear-gradient(180deg, #0a0d0a 0%, var(--dark) 42%, #0a0f0b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(251, 241, 242, 0.35) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 0 46%, rgba(251, 241, 242, 0.08) 47% 48%, transparent 49%);
  background-size: 80px 80px, 140px 140px;
}

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

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

p {
  line-height: 1.7;
  color: var(--muted);
}

/* Header */
.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(10, 14, 11, 0.78);
  border: 1px solid rgba(251, 241, 242, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark,
.footer-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--dark);
  background: var(--pink);
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(251, 241, 242, 0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0.03em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--pink);
}

.header-button,
.button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  transition: 0.2s ease;
}

.header-button {
  padding: 12px 18px;
  color: var(--dark);
  background: var(--pink);
}

.header-button:hover,
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(251, 241, 242, 0.16);
}

/* Hero */
.hero-section {
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: -72px auto 0;
  padding: 180px 34px 90px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 44px 44px;
  background:
    linear-gradient(90deg, rgba(9, 13, 10, 0.92) 0%, rgba(9, 13, 10, 0.72) 44%, rgba(9, 13, 10, 0.35) 100%),
    radial-gradient(circle at 75% 20%, rgba(251, 241, 242, 0.22), transparent 24%),
    url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1600&q=80") center/cover;
  box-shadow: var(--shadow);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--dark), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 7vw, 86px);
  max-width: 760px;
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 580px;
  font-size: 18px;
}

.hero-actions,
.right-link-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
}

.button-primary {
  color: var(--dark);
  background: var(--pink);
}

.button-ghost {
  color: var(--pink);
  background: rgba(251, 241, 242, 0.08);
  border: 1px solid var(--pink-line);
}

/* Service Pill Bar */
.service-pill-bar {
  width: min(860px, calc(100% - 32px));
  margin: -58px auto 0;
  padding: 18px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 18, 14, 0.96);
  border: 1px solid rgba(251, 241, 242, 0.12);
  box-shadow: var(--shadow);
}

.service-pill-bar a {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 86px;
  padding: 12px;
  text-align: center;
  color: var(--muted);
  border-right: 1px dashed rgba(251, 241, 242, 0.18);
  font-size: 13px;
}

.service-pill-bar a:last-child {
  border-right: 0;
}

.service-pill-bar span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: var(--pink);
  border-radius: 50%;
}

/* Layout Sections */
.section-padding {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--pink);
  font-weight: 800;
}

.oval-image-card {
  min-height: 310px;
  padding: 18px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(12, 18, 14, 0.15), rgba(12, 18, 14, 0.45)),
    url("https://images.unsplash.com/photo-1518791841217-8f162f1e1131?auto=format&fit=crop&w=1000&q=80") center/cover;
  border: 1px solid rgba(251, 241, 242, 0.18);
  box-shadow: var(--shadow);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 274px;
  display: grid;
  place-items: end center;
  padding-bottom: 35px;
  color: var(--pink);
  font-weight: 900;
}

.dark-panel-section {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, rgba(18, 27, 21, 0.68), rgba(8, 12, 9, 0.2));
}

.centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(251, 241, 242, 0.10), rgba(251, 241, 242, 0.04));
  border: 1px solid rgba(251, 241, 242, 0.16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.card-number {
  display: block;
  margin-bottom: 50px;
  color: var(--pink);
  font-size: 42px;
  font-weight: 900;
}

/* Gallery Preview */
.gallery-preview .section-heading {
  max-width: 650px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.preview-card,
.gallery-card {
  min-height: 230px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(251, 241, 242, 0.16);
  background:
    linear-gradient(0deg, rgba(8, 12, 9, 0.82), rgba(8, 12, 9, 0.05)),
    url("https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=900&q=80") center/cover;
  box-shadow: var(--shadow);
}

.preview-card:nth-child(2),
.gallery-card:nth-child(3) {
  background-image:
    linear-gradient(0deg, rgba(8, 12, 9, 0.82), rgba(8, 12, 9, 0.05)),
    url("https://images.unsplash.com/photo-1599685315640-d4e1667c7a06?auto=format&fit=crop&w=900&q=80");
}

.preview-card:nth-child(3),
.gallery-card:nth-child(4) {
  background-image:
    linear-gradient(0deg, rgba(8, 12, 9, 0.82), rgba(8, 12, 9, 0.05)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=900&q=80");
}

.preview-card span,
.gallery-card span {
  padding: 9px 14px;
  color: var(--dark);
  background: var(--pink);
  border-radius: 999px;
  font-weight: 900;
}

.right-link-wrap {
  justify-content: flex-end;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 70px 54px;
  margin-bottom: 70px;
  border-radius: 52px;
  background: radial-gradient(circle at 20% 10%, rgba(251, 241, 242, 0.14), transparent 32%), var(--green);
  border: 1px solid rgba(251, 241, 242, 0.14);
}

.contact-cta h2 {
  max-width: 760px;
}

/* Gallery Page */
.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 100px 46px 70px;
  border-radius: 44px;
  background:
    linear-gradient(90deg, rgba(9, 13, 10, 0.9), rgba(9, 13, 10, 0.45)),
    url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1600&q=80") center/cover;
  box-shadow: var(--shadow);
}

.page-hero p {
  max-width: 720px;
}

.gallery-grid-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 480px;
}

.gallery-card.wide {
  grid-column: span 2;
}

/* Contact Page */
.contact-page {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-list {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(251, 241, 242, 0.08);
  border: 1px solid rgba(251, 241, 242, 0.14);
}

.contact-form {
  padding: 34px;
  border-radius: 34px;
  background: rgba(251, 241, 242, 0.08);
  border: 1px solid rgba(251, 241, 242, 0.16);
  box-shadow: var(--shadow);
}

label {
  display: block;
  margin: 16px 0 8px;
  color: var(--pink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(251, 241, 242, 0.20);
  border-radius: 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(251, 241, 242, 0.08);
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 22px;
}

/* Footer */
.site-footer {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 34px;
  padding: 64px 28px 50px;
  text-align: center;
  border-radius: 50% 50% 44px 44px / 24% 24% 44px 44px;
  background: rgba(27, 43, 32, 0.92);
  border: 1px solid rgba(251, 241, 242, 0.14);
}

.footer-logo {
  margin: 0 auto 16px;
}

.footer-small {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 950px) {
  .site-header {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-section {
    margin-top: -106px;
    padding-top: 220px;
  }

  .service-pill-bar,
  .service-grid,
  .preview-grid,
  .gallery-grid-section,
  .split-section,
  .contact-page {
    grid-template-columns: 1fr 1fr;
  }

  .contact-copy {
    position: static;
  }

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

@media (max-width: 650px) {
  .header-button {
    display: none;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero-section {
    min-height: auto;
    padding: 210px 22px 92px;
    border-radius: 0 0 30px 30px;
  }

  .service-pill-bar,
  .service-grid,
  .preview-grid,
  .gallery-grid-section,
  .split-section,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .service-pill-bar {
    border-radius: 32px;
  }

  .service-pill-bar a {
    border-right: 0;
    border-bottom: 1px dashed rgba(251, 241, 242, 0.18);
  }

  .service-pill-bar a:last-child {
    border-bottom: 0;
  }

  .gallery-card.large,
  .gallery-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .contact-cta {
    padding: 46px 28px;
    border-radius: 34px;
  }
}

/* Shared header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-button-soft {
  color: var(--pink);
  background: rgba(251, 241, 242, 0.08);
  border: 1px solid var(--pink-line);
}

.sister-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 80px;
  padding: 46px 52px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(251, 241, 242, 0.14), rgba(251, 241, 242, 0.04));
  border: 1px solid rgba(251, 241, 242, 0.18);
}

.sister-strip p {
  max-width: 680px;
}

/* ================================
   Meticulous Touch Cleaning Page
   Same CSS file, different page theme
================================ */
.cleaning-page-theme {
  --clean-pink: #e73588;
  --clean-pink-dark: #a70e5e;
  --clean-pink-soft: #ffe3ef;
  --clean-purple: #5a1f66;
  --clean-text: #fff8fb;
  color: var(--clean-text);
  background:
    radial-gradient(circle at 12% 10%, rgba(251, 241, 242, 0.45), transparent 24%),
    radial-gradient(circle at 85% 0%, rgba(231, 53, 136, 0.22), transparent 28%),
    linear-gradient(180deg, #190414 0%, #3a0b2a 45%, #17020f 100%);
}

.cleaning-page-theme body::before {
  display: none;
}

.cleaning-page-theme .site-header {
  background: rgba(36, 5, 26, 0.82);
  border-color: rgba(255, 227, 239, 0.28);
}

.clean-mark,
.cleaning-page-theme .brand-mark,
.cleaning-page-theme .footer-logo {
  color: #7a0d47;
  background: #fff2f7;
}

.cleaning-page-theme .eyebrow,
.cleaning-page-theme .text-link,
.cleaning-page-theme label,
.cleaning-page-theme .main-nav a:hover {
  color: #fff2f7;
}

.cleaning-page-theme .header-button,
.cleaning-page-theme .button-primary,
.cleaning-page-theme .preview-card span,
.cleaning-page-theme .gallery-card span {
  color: #7a0d47;
  background: #fff2f7;
}

.cleaning-page-theme .header-button-soft,
.cleaning-page-theme .button-ghost {
  color: #fff2f7;
  background: rgba(255, 242, 247, 0.12);
  border: 1px solid rgba(255, 242, 247, 0.42);
}

.cleaning-hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 640px;
  margin: -72px auto 0;
  padding: 180px 42px 74px;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  border-radius: 0 0 44px 44px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.58) 0 8%, transparent 9%),
    radial-gradient(circle at 72% 15%, rgba(255, 242, 247, 0.8) 0 4%, transparent 5%),
    radial-gradient(circle at 90% 42%, rgba(255, 242, 247, 0.72) 0 3%, transparent 4%),
    linear-gradient(115deg, rgba(167, 14, 94, 0.96) 0%, rgba(231, 53, 136, 0.92) 47%, rgba(255, 157, 195, 0.88) 100%);
  box-shadow: var(--shadow);
}

.cleaning-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 130px;
  width: min(500px, 55vw);
  aspect-ratio: 1;
  border-radius: 38% 62% 47% 53% / 48% 35% 65% 52%;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.76), rgba(255,255,255,0.14)),
    radial-gradient(circle at 70% 36%, rgba(167,14,94,0.28), transparent 26%);
  border: 1px solid rgba(255,255,255,0.35);
}

.cleaning-hero::before {
  content: "✦";
  position: absolute;
  right: 31%;
  top: 43%;
  color: #fff;
  font-size: 44px;
  opacity: 0.9;
}

.cleaning-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.cleaning-hero h1 {
  text-transform: uppercase;
  letter-spacing: -0.06em;
  text-shadow: 0 8px 28px rgba(83, 4, 47, 0.25);
}

.cleaning-hero p {
  color: #fff8fb;
  font-size: 19px;
}

.cleaning-badge {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: #3c0a28;
  background: #fff8fb;
  border: 7px solid rgba(167, 14, 94, 0.35);
  border-radius: 50%;
  box-shadow: 0 28px 60px rgba(80, 4, 44, 0.28);
}

.cleaning-badge strong,
.cleaning-badge span {
  display: block;
}

.cleaning-badge span {
  margin-top: 8px;
  color: #a70e5e;
  font-weight: 900;
}

.cleaning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cleaning-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 30px;
  color: #3c0a28;
  background: rgba(255, 248, 251, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 20px 50px rgba(71, 2, 39, 0.22);
}

.cleaning-card span {
  width: 54px;
  height: 54px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffd8e8;
  font-size: 26px;
}

.cleaning-card p {
  color: #6f3351;
}

.cleaning-contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
  padding: 70px 52px;
  margin-bottom: 80px;
  border-radius: 42px;
  background: rgba(255, 248, 251, 0.10);
  border: 1px solid rgba(255, 248, 251, 0.18);
}

.cleaning-form,
.cleaning-contact-list {
  background: rgba(255, 248, 251, 0.12);
  border-color: rgba(255, 248, 251, 0.24);
}

.cleaning-footer {
  background: rgba(91, 13, 61, 0.86);
  border-color: rgba(255, 248, 251, 0.22);
}

@media (max-width: 950px) {
  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .sister-strip,
  .cleaning-contact {
    flex-direction: column;
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .cleaning-hero {
    grid-template-columns: 1fr;
    margin-top: -106px;
    padding-top: 220px;
  }

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

@media (max-width: 650px) {
  .header-actions .header-button {
    display: inline-flex;
    padding: 10px 14px;
    font-size: 13px;
  }

  .sister-strip,
  .cleaning-contact {
    padding: 36px 24px;
    border-radius: 30px;
  }

  .cleaning-hero {
    min-height: auto;
    padding: 210px 24px 74px;
    border-radius: 0 0 30px 30px;
  }

  .cleaning-badge {
    justify-self: start;
    width: 150px;
    height: 150px;
    font-size: 14px;
  }

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