/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #faf8f5;
  --color-bg-alt: #f3efe9;
  --color-text: #2c2c2c;
  --color-text-light: #5a5a5a;
  --color-accent: #9e4a3a;
  --color-accent-hover: #834030;
  --color-border: #e8e2d9;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 800px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* === Typography === */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: #9e4a3a;
  border-bottom: none;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #faf8f5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e8ddd4;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #faf8f5;
  transition: transform 0.3s, opacity 0.3s;
}

/* === Hero === */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 3rem;
  background-color: #9e4a3a;
  color: #faf8f5;
}

.hero h1 {
  color: #faf8f5;
}

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

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #e8ddd4;
  margin: 1rem 0 2rem;
  font-weight: 300;
}

.hero .btn-primary {
  background: #faf8f5;
  color: #7b5e47;
}

.hero .btn-primary:hover {
  background: #ede6dc;
}

/* === Marquee === */
.marquee {
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.marquee-content {
  display: flex;
  gap: 2rem;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}

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

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.section-alt {
  background: var(--color-bg-alt);
}

.section-intro {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* === About === */
.about-content p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.about-content p:first-child {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 400;
}

/* === Feature List === */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-light);
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* === Pricing === */
.pricing-table {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-header {
  background: var(--color-bg-alt);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
}

.pricing-row strong {
  display: block;
  font-weight: 500;
}

.pricing-row small {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.price {
  font-weight: 600;
  color: var(--color-text);
  text-align: right;
  white-space: nowrap;
}

.price small {
  font-weight: 400;
}

/* === Quote === */
.quote {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-light);
  padding: 2rem 0;
}

.quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-style: normal;
}

/* === FAQ === */
.faq-list {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--color-bg-alt);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 0.3s;
  color: var(--color-accent);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* === CTA Section === */
.cta-section {
  text-align: center;
  background: var(--color-bg-alt);
}

.cta-section p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.location {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* === Contact Form === */
.contact-form-wrapper {
  margin-top: 2rem;
}

.form-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.form-intro {
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: left;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-group .required {
  color: #c0392b;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: white;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0a89e;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn-primary {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 24px;
  padding: 0.9rem 2.2rem;
}

/* === Button === */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
}

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

/* === Footer === */
.footer {
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.footer p + p {
  margin-top: 0.25rem;
}

/* === Mobile === */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #9e4a3a;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    border-bottom: none;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    min-height: 60vh;
  }

  .section {
    padding: 3.5rem 0;
  }

  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .pricing-header {
    display: none;
  }

  .price {
    text-align: left;
  }

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