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

:root {
  --primary: #d4a5a5;
  --secondary: #f5e6e0;
  --accent: #8b6e6e;
  --text-dark: #2c2c2c;
  --text-light: #6b6b6b;
  --border: #e8d8d0;
  --success: #9ccc65;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  cursor: pointer;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.brand-text-main {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.brand-text-sub {
  font-size: 0.875rem;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

/* Main Content */
main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 0;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 4rem;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.hero-kicker-pill {
  font-size: 1.25rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.highlight {
  color: var(--primary);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 165, 165, 0.3);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* Hero Card */
.hero-card {
  background: linear-gradient(135deg, var(--secondary) 0%, #f9eae5 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-card-tag {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-card-tag span:first-child {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.hero-tag-sub {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero-schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-schedule-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.pill {
  background-color: #ffe8f0;
  color: #d4669f;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-schedule-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  font-size: 0.9rem;
}

.hero-schedule-row span:first-child {
  color: var(--text-light);
  font-weight: 500;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-check-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.hero-check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.hero-footnote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-heading p {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212, 165, 165, 0.15);
}

.service-tag {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card > p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.service-list li:before {
  content: "✨";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Pricing Section */
.pricing-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card.highlighted {
  border-color: var(--primary);
  background-color: var(--secondary);
  box-shadow: 0 8px 32px rgba(212, 165, 165, 0.2);
  transform: scale(1.02);
}

.pricing-card:hover {
  box-shadow: 0 12px 32px rgba(212, 165, 165, 0.15);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.pricing-label {
  display: inline-block;
  background-color: #ffe8f0;
  color: #d4669f;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.pricing-label-sub {
  background-color: #f0f0f0;
  color: var(--text-light);
}

.pricing-title {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 0;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
}

.pricing-price span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-card > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.pricing-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-intro {
  margin-bottom: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-intro a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-intro a:hover {
  text-decoration: underline;
}

.contact-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.contact-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.contact-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Form Styles */
form {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row > div {
  display: flex;
  flex-direction: column;
}

form label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

form input,
form select,
form textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--white);
  transition: border-color 0.2s;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

form input::placeholder,
form textarea::placeholder {
  color: var(--text-light);
}

form > div:nth-child(3) {
  margin-bottom: 1.5rem;
}

form > div:nth-child(3) label {
  display: block;
  margin-bottom: 0.5rem;
}

form textarea {
  resize: vertical;
  min-height: 120px;
  grid-column: 1 / -1;
}

.form-helper {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-status {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.btn-submit {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #fafaf8;
  border-top: 1px solid var(--border);
  padding: 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

footer p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links span {
  color: var(--border);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    gap: 1rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  main {
    padding: 0 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .section-heading h2 {
    font-size: 1.75rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .section-heading h2 {
    font-size: 1.5rem;
  }

  .nav {
    padding: 1rem;
  }

  main {
    padding: 0 1rem;
  }

  section {
    padding: 2rem 0;
  }

  .nav-links {
    font-size: 0.85rem;
  }

  .hero-badge {
    font-size: 0.85rem;
  }

  .pricing-layout {
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  form {
    padding: 1.5rem;
  }
}
