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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #3a2c1a;
  background-color: #fdfaf5;
}

a {
  color: #b22424;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* Layout wrappers */
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

/* Header & nav */
.site-header {
  border-bottom: 1px solid #e1d4c2;
  background-color: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 64px;
  width: auto;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8c6a1a;
  text-transform: uppercase;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a341c;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  border-bottom-color: #b22424;
}

/* Buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  background: none;
}

.btn-primary {
  background-color: #b22424;
  color: #fff;
  border-color: #b22424;
}

.btn-primary:hover {
  background-color: #8c1919;
  border-color: #8c1919;
}

.btn-outline {
  border-color: #c9a35e;
  color: #4a341c;
  background-color: #fff7ea;
}

.btn-outline:hover {
  background-color: #f2e2c5;
}

/* Hero */
.hero {
  padding: 3rem 1.5rem 2.5rem;
  background: linear-gradient(135deg, #ffffff, #f5efe2);
  border-bottom: 1px solid #e1d4c2;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2rem;
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #3a2610;
}

.hero-subtitle {
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background-color: #b22424;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge span {
  background: #f6d26b;
  color: #5c3a0b;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
}

.hero-highlight {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  color: #6a4e2c;
}

/* Sections */
.section {
  padding: 2.5rem 0 0;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: #3a2610;
}

.section-subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #6a4e2c;
}

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

/* Cards */
.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e1d4c2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #4a341c;
}

.card p + p {
  margin-top: 0.6rem;
}

/* Metric */
.highlight-metric {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b22424;
}

.metric-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #7a5a32;
}

/* Lists */
ul.check-list {
  list-style: none;
  margin-left: 0;
}

ul.check-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.4rem;
}

ul.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #b22424;
  font-size: 1.1rem;
}

/* Image rows / galleries */
.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.image-row img {
  border-radius: 0.75rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2rem;
}

.contact-details p {
  margin-bottom: 0.4rem;
}

.contact-label {
  font-weight: 600;
  color: #4a341c;
}

.contact-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e1d4c2;
}

/* Pricing / order page */
.pricing-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e1d4c2;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card-header {
  margin-bottom: 1rem;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3a2610;
}

.plan-tagline {
  font-size: 0.95rem;
  color: #6a4e2c;
  margin-top: 0.3rem;
}

.plan-price {
  margin-top: 0.9rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #b22424;
}

.plan-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #7a5a32;
  margin-left: 0.25rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  background-color: #f6d26b;
  color: #5c3a0b;
}

.plan-list {
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.plan-list li {
  margin-bottom: 0.35rem;
}

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Toggle row */
.toggle-row {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background-color: #fff;
  border: 1px solid #e1d4c2;
  font-size: 0.8rem;
  margin-top: 1rem;
}

.toggle-row span.is-active {
  font-weight: 700;
  color: #b22424;
}

/* Fake payment box */
.payment-box {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: 0.9rem;
  border: 1px dashed #d8c6aa;
  background-color: #fffdf7;
}

.payment-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.payment-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.payment-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a5a32;
}

.payment-input {
  margin-top: 0.2rem;
  border-radius: 999px;
  border: 1px solid #d2c4af;
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  width: 100%;
  background-color: #fff;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid #e1d4c2;
  padding: 1.25rem 1.5rem 1.75rem;
  background-color: #ffffff;
  font-size: 0.85rem;
  color: #7a5a32;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .main-nav ul {
    justify-content: flex-start;
  }

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