body {
  background-color: #f9f4ec;
  color: #2f2f2f;
}

.page-hero-placeholder {
  width: 100%;
  margin: 0 0 40px 0;
  padding: 0;
}

.page-hero-placeholder img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0;
}

.package-hero {
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #f2d7a4, #f7f2e5);
}

.package-hero .container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.package-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  text-shadow: 0 3px 8px rgba(0, 51, 102, 0.25);
}

.package-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.package-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.package-meta span {
  background: rgba(255,255,255,0.7);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.package-card .package-icon {
  width: 52px;
  height: auto;
  display: block;
  margin: 0 auto 16px auto;
}

.package-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.package-card p {
  color: #555;
  line-height: 1.5;
}

.deliverables {
  background: #fff;
  margin: 0 auto;
  border-radius: 16px;
  max-width: 1100px;
  padding: 48px 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.deliverables ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.deliverables li {
  background: #f9f4ec;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f0dfc4;
}

.pricing-note {
  text-align: left;
  margin: 60px auto;
  max-width: 800px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.pricing-note h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pricing-note ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #4a4a4a;
}

.pricing-note li {
  background: #f7f2e5;
  border-radius: 14px;
  padding: 12px 16px;
  line-height: 1.5;
}

.pricing-note-link {
  font-weight: 600;
  color: #2f5a3d;
  text-decoration: underline;
}

.pricing-quote {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fef8ec, #f1ead9);
  box-shadow: 0 18px 36px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-quote h2 {
  margin-top: 0;
}

.pricing-quote ul {
  margin: 16px 0 0 20px;
  color: #4a4a4a;
  line-height: 1.5;
}

.quote-tier-line {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 16px 0;
  text-align: center;
}

.quote-tier-line span {
  padding: 12px;
  border: 1px solid #e5d3b2;
  border-radius: 16px;
  background: rgba(255,255,255,0.6);
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.04);
}

.tier-section {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.tier-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 18px;
}

.tier-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9b97f, #2f5a3d);
}

.tier-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #7a5a2c;
  font-weight: 600;
  margin-bottom: 8px;
}

.tier-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #2f2f2f;
}

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

.tier-card {
  border: 1px solid #f0dfc4;
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(135deg, #fffdf8 0%, #f9f1e2 100%);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tier-card.tier-featured {
  border: 2px solid #2f5a3d;
  box-shadow: 0 16px 34px rgba(47, 90, 61, 0.2);
  transform: translateY(-6px);
}

.tier-badge {
  align-self: flex-start;
  background: linear-gradient(90deg, #2f5a3d, #7abf8a);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tier-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.tier-price {
  font-weight: 700;
  color: #2f5a3d;
  margin-bottom: 10px;
}

.tier-icon img {
  width: 48px;
  height: auto;
}

.tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #4a4a4a;
}

.tier-benefits li {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.tier-benefits li::before {
  content: "✓";
  color: #2f5a3d;
  font-weight: 700;
  line-height: 1;
}

.tier-select {
  margin-top: auto;
  align-self: flex-start;
  background: #2f5a3d;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tier-select:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.tier-notes {
  margin-top: 24px;
  text-align: center;
  color: #4a4a4a;
  line-height: 1.5;
}

.tier-notes strong {
  color: #2f5a3d;
}

.tier-contact {
  margin-top: 12px;
  font-weight: 600;
}

.tier-contact a {
  color: #2f5a3d;
  text-decoration: underline;
  padding-bottom: 2px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.quote-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2f2f2f;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 1px solid #d8c8aa;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.quote-form textarea {
  resize: vertical;
  min-height: 80px;
}

.quote-form button {
  grid-column: 1 / -1;
  justify-self: flex-start;
  margin-top: 8px;
}

.quote-form-status {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  margin: 4px 0 0 0;
  color: #2f5a3d;
}

.quote-form-status.error { color: #c0392b; }
.quote-form-status.success { color: #2a7a46; }
.quote-form-status.info { color: #007bff; }

.cta-panel {
  background: linear-gradient(135deg, #dff8f0, #cde8ff);
  color: #0f2f2a;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cta-panel p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.cta-panel .btn-primary {
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 768px) {
  .package-hero .container {
    text-align: center;
  }

  .package-meta {
    justify-content: center;
  }

  .tier-section {
    padding: 28px 20px;
  }
}
