/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Nunito+Sans:wght@300;400;600&display=swap');

:root {
  /* Theme: Warm & Human (Beige/Soft Blue) */
  --color-bg: #fdfbf7;
  /* Warm white/cream */
  --color-bg-alt: #f3efe9;
  /* Darker beige for sections */
  --color-primary: #475569;
  /* Slate Blue/Grey - Trustworthy */
  --color-accent: #d97706;
  /* Soft Warm Amber for buttons */
  --color-text: #292524;
  /* Warm Black */
  --color-text-light: #57534e;

  --font-heading: 'Lora', serif;
  --font-body: 'Nunito Sans', sans-serif;

  --radius-soft: 8px;
  --radius-card: 16px;

  --shadow-warm: 0 10px 30px -5px rgba(67, 48, 25, 0.05);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-style: italic;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  width: min(1500px, 92%);
  margin-inline: auto;
}

/* Header */
.header {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--color-bg);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-symbol {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-primary);
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--color-text-light);
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}

/* Hero */
.hero {
  padding: 5rem 0 6rem;
  text-align: left;
  /* Changed from center */
  background: radial-gradient(circle at 50% 50%, #fff 0%, var(--color-bg) 100%);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 0 0 500px;
  max-width: 100%;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin: 0 0 2rem;
  /* Adjusted margins */
  font-weight: 400;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

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

.section-alt {
  background: var(--color-bg-alt);
  border-radius: var(--radius-card);
  margin: 2rem auto;
  max-width: 1200px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-warm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-align: center;
}

.icon-soft {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* Contact */
.contact-section {
  text-align: center;
}

.form-wrapper {
  max-width: 600px;
  margin: 3rem auto 0;
  background: white;
  padding: 3rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-warm);
}

.form-field {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-soft);
  background: #fafafa;
  font-family: var(--font-body);
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: white;
}

.text-sm {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 1rem;
  display: block;
}

/* Footer */
.footer {
  text-align: center;
  padding: 4rem 0;
  color: var(--color-text-light);
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-text {
    flex: auto;
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .intro-grid,
  .card-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .section {
    padding: 3rem 0;
  }
}

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

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

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

/* Restored List Styles */
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  margin-bottom: 0.8rem;
  color: var(--color-text);
  font-size: 1.05rem;
}

.contact-info-block {
  font-family: var(--font-body);
  color: var(--color-text-light);
  font-size: 1.1rem;
}