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

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Work+Sans:wght@400;500;600;700&display=swap");

:root {
  --primary: #2c5f5d;
  --primary-light: #3d7572;
  --primary-dark: #1d4644;
  --accent: #d4a574;
  --accent-hover: #c29460;

  --background: #fdfcfb;
  --surface: #ffffff;
  --surface-alt: #f7f5f3;
  --surface-dark: #2a2a2a;

  --foreground: #1f1f1f;
  --foreground-muted: #5a5a5a;
  --foreground-subtle: #8a8a8a;
  --foreground-light: #ffffff;

  --border: #e8e5e1;
  --border-hover: #d4cfca;

  --shadow-sm: 0 1px 2px rgba(44, 95, 93, 0.06);
  --shadow: 0 4px 12px rgba(44, 95, 93, 0.08);
  --shadow-lg: 0 16px 40px rgba(44, 95, 93, 0.12);

  --radius: 12px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.header {
  background-color: rgba(253, 252, 251, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.logo {
  font-family: "Sora", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

.nav-link {
  color: var(--foreground-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1.75rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--foreground-light);
  padding: 9rem 0 11rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(61, 117, 114, 0.15) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: "Sora", sans-serif;
  font-size: 4.5rem;
  margin-bottom: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.125rem;
  max-width: 720px;
  margin: 0 auto 3.5rem;
  opacity: 0.9;
  line-height: 1.75;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1.125rem 3rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Work Sans", sans-serif;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--foreground-light);
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.features {
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--surface) 0%, var(--surface-alt) 100%);
}

.features h2 {
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}

.feature-card {
  background-color: var(--surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 2rem;
}

.feature-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.feature-card p {
  color: var(--foreground-muted);
  line-height: 1.75;
}

.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--foreground-light);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 165, 116, 0.15) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: "Sora", sans-serif;
  font-size: 3.25rem;
  margin-bottom: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.92;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--foreground-light);
  padding: 6rem 0 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: "Sora", sans-serif;
  font-size: 4rem;
  margin-bottom: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.92;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

.content-section {
  padding: 7rem 0;
  background-color: var(--surface);
}

.content-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 3.5rem;
}

.content-block h2 {
  font-family: "Sora", sans-serif;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.content-block h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-block p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--foreground-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-item {
  padding: 2.5rem;
  background-color: var(--surface-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.value-item h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.375rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-item p {
  color: var(--foreground-muted);
  line-height: 1.75;
}

.team-section {
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--surface) 0%, var(--surface-alt) 100%);
}

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

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

.team-member-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.75rem;
  background: linear-gradient(135deg, var(--surface-alt) 0%, var(--border) 100%);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.team-member-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-member-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-member-bio {
  line-height: 1.75;
  color: var(--foreground-muted);
}

.services-section {
  padding: 7rem 0;
  background-color: var(--surface);
}

.services-intro {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 5rem;
}

.services-intro h2 {
  font-family: "Sora", sans-serif;
  font-size: 3.25rem;
  color: var(--primary);
  margin-bottom: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.services-intro p {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background-color: var(--surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-image {
  width: calc(100% + 6rem);
  margin: -3rem -3rem 2rem -3rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface-alt) 0%, var(--border) 100%);
  aspect-ratio: 16 / 9;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-icon {
  color: var(--accent);
  margin-bottom: 2rem;
}

.service-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.service-card > p {
  margin-bottom: 1.75rem;
  line-height: 1.75;
  color: var(--foreground-muted);
}

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

.service-features li {
  padding: 0.875rem 0;
  padding-left: 2.25rem;
  position: relative;
  color: var(--foreground-muted);
  line-height: 1.65;
}

.service-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.25rem;
}

.contact-section {
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--surface) 0%, var(--surface-alt) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-form-container h2,
.contact-info-container h2 {
  font-family: "Sora", sans-serif;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.625rem;
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
  background-color: var(--surface);
  color: var(--foreground);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(44, 95, 93, 0.08);
}

.form-message {
  margin-top: 1.25rem;
  padding: 1.125rem 1.5rem;
  border-radius: var(--radius);
  display: none;
  font-weight: 500;
}

.form-message.success {
  background-color: rgba(44, 95, 93, 0.08);
  color: var(--primary);
  border: 1px solid var(--primary);
  display: block;
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  border: 1px solid #dc3545;
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
}

.contact-info-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  color: var(--primary);
  font-weight: 600;
}

.contact-info-item p {
  line-height: 1.75;
  color: var(--foreground-muted);
}

.contact-info-item a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--accent);
}

.legal-section {
  padding: 7rem 0;
  background-color: var(--surface);
}

.legal-content {
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  font-family: "Sora", sans-serif;
  font-size: 2.25rem;
  color: var(--primary);
  margin: 3rem 0 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.375rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 1.25rem;
  color: var(--foreground-muted);
}

.legal-content ul {
  margin: 1.25rem 0 1.5rem 2.5rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--foreground-muted);
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.legal-content a:hover {
  color: var(--accent);
}

.footer {
  background: linear-gradient(135deg, var(--surface-dark) 0%, #1f1f1f 100%);
  color: var(--foreground-light);
  padding: 5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 60%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  font-family: "Sora", sans-serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.875rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9375rem;
}

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

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content h1 {
    font-size: 3.25rem;
  }

  .page-header h1 {
    font-size: 3rem;
  }

  .container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface);
    box-shadow: var(--shadow);
    padding: 2rem;
    gap: 1.5rem;
  }

  .nav.active {
    display: flex;
  }

  .nav-link.active::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 0 7rem;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 1.375rem;
  }

  .page-header {
    padding: 4rem 0 5rem;
  }

  .page-header h1 {
    font-size: 2.25rem;
  }

  .features h2,
  .cta h2,
  .services-intro h2,
  .content-block h2,
  .contact-form-container h2,
  .contact-info-container h2 {
    font-size: 2.25rem;
  }

  .features,
  .services-section,
  .content-section,
  .contact-section,
  .team-section {
    padding: 4.5rem 0;
  }

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

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

  .contact-wrapper {
    gap: 3.5rem;
  }

  .container {
    padding: 0 20px;
  }
}
