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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Crimson Text", Georgia, serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
}
a:hover {
  opacity: 0.7;
}
ul,
ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.25;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}
h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
}
strong {
  font-weight: 600;
}

/* ===== PAGE WRAPPER ===== */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  min-height: 100vh;
}

/* ===== NAVIGATION ===== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 100;
}

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

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: #4a6e7a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.nav-logo-icon span {
  color: #c0392b;
  background: #fff;
  padding: 0 2px;
  font-size: 0.85rem;
  margin-right: 3px;
}

.nav-logo-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(0, 0, 0, 0.85);
  letter-spacing: 0.3px;
}

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

.nav-links a {
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.3px;
  transition: color 0.2s ease-out;
}

.nav-links a:hover,
.nav-links a.active {
  color: rgba(0, 0, 0, 0.85);
  opacity: 1;
}

.nav-cta {
  background: rgba(0, 0, 0, 0.85) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  font-size: 0.88rem !important;
  letter-spacing: 0.5px;
  transition: background 0.2s ease-out !important;
}

.nav-cta:hover {
  background: rgba(0, 0, 0, 0.7) !important;
  opacity: 1 !important;
}

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

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.2s ease-out;
}

/* ===== HERO ===== */
.hero {
  padding: 6rem 3rem 5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hero h1 {
  font-size: 3.4rem;
  max-width: 750px;
  margin: 0 auto 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.6);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 0.85rem 2rem;
  font-family: "Crimson Text", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease-out;
}

.btn-primary:hover {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(0, 0, 0, 0.7);
  padding: 0.85rem 2rem;
  font-family: "Crimson Text", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.5);
  color: rgba(0, 0, 0, 0.85);
  opacity: 1;
}

/* ===== SEPARATOR ===== */
.sep {
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 3rem;
}

.section--alt {
  background: rgba(0, 0, 0, 0.02);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: rgba(0, 0, 0, 0.55);
  font-size: 1.05rem;
}

.section-label {
  font-family: "Crimson Text", Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0.75rem;
  display: block;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-out;
}

.feature-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col--reverse .col-text {
  order: -1;
}

.col-visual {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.col-visual-inner {
  text-align: center;
  color: rgba(0, 0, 0, 0.3);
}

.col-visual-inner .visual-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.col-text h2 {
  margin-bottom: 1rem;
}

.col-text p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

.col-text ul {
  margin-bottom: 1.5rem;
}

.col-text ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
}

.col-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}

/* ===== METRICS ROW ===== */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 4rem 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.metric-item .metric-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  font-style: italic;
  color: rgba(0, 0, 0, 0.85);
  display: block;
  margin-bottom: 0.3rem;
}

.metric-item .metric-label {
  font-family: "Crimson Text", Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

/* ===== TESTIMONIAL / QUOTE ===== */
.quote-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}

.quote-block blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.4);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow 0.3s ease-out;
}

.pricing-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pricing-card--featured {
  border-color: rgba(0, 0, 0, 0.2);
}

.pricing-card--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 2rem;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
}

.pricing-tier {
  font-family: "Crimson Text", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 2.8rem;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.4);
}

.pricing-desc {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.92rem;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  display: block;
  text-align: center;
  margin-top: 2rem;
  width: 100%;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-out;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}

.faq-answer p {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.95rem;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail .detail-label {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 0.3rem;
}

.contact-detail .detail-value {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-family: "Crimson Text", Georgia, serif;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  background: #fff;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease-out;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.35);
}

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

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

/* ===== LEGAL / LONG-FORM TEXT ===== */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-content h1 {
  margin-bottom: 0.75rem;
}

.legal-date {
  color: rgba(0, 0, 0, 0.35);
  font-size: 0.85rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.legal-content ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

/* ===== HIGHLIGHT BLOCK ===== */
.highlight-block {
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.highlight-block p {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.6);
}

/* ===== INSIGHT BLOCK ===== */
.insight-block {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
}

.insight-block p {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 5rem 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-hero h1 {
  max-width: 700px;
  margin: 0 auto 1.25rem;
}

.about-hero p {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.55);
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card .team-role {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.55);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 4.5rem 3rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(0, 0, 0, 0.5);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3.5rem 3rem 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-col h4 {
  font-style: normal;
  font-family: "Crimson Text", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.6rem;
}

.footer-col a:hover {
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid,
  .pricing-grid,
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .two-col--reverse .col-text {
    order: 0;
  }
  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 2.4rem;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .section {
    padding: 3.5rem 2rem;
  }
  .hero {
    padding: 4rem 2rem 3.5rem;
  }
}

@media (max-width: 640px) {
  .site-nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero {
    padding: 3rem 1.5rem 2.5rem;
  }
  .section {
    padding: 3rem 1.5rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  h1 {
    font-size: 2rem;
  }
  .metrics-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 3rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .pricing-price {
    font-size: 2.2rem;
  }
  .legal-content {
    padding: 3rem 1rem;
  }
  .site-footer {
    padding: 2.5rem 1.5rem 2rem;
  }
}
