:root {
  --background: 30 20% 98%;
  --foreground: 220 20% 12%;

  --card: 0 0% 100%;
  --card-foreground: 220 20% 12%;

  --primary: 350 30% 58%;
  --primary-light: 350 25% 75%;
  --primary-foreground: 0 0% 100%;

  --secondary: 220 10% 95%;
  --secondary-foreground: 220 20% 12%;

  --muted: 220 10% 95%;
  --muted-foreground: 220 10% 46%;

  --accent: 350 30% 58%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 220 10% 90%;
  --input: 220 10% 90%;
  --ring: 350 30% 58%;

  --radius: 0.5rem;

  --charcoal: 220 20% 12%;
  --charcoal-light: 220 10% 25%;
  --rose-gold: 350 30% 58%;
  --rose-gold-light: 350 25% 75%;
  --rose-gold-muted: 350 20% 92%;
  --warm-white: 30 20% 98%;
  --soft-grey: 220 10% 95%;
  --medium-grey: 220 10% 75%;

  --overlay: rgba(31, 31, 31, 0.7);
  --overlay-light: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 96px 0 128px;
}

.section-soft {
  background-color: hsl(var(--soft-grey));
}

.section-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-tag {
  color: hsl(var(--primary));
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 800;
  color: hsl(var(--foreground));
}

.section-description {
  font-size: 1.05rem;
  color: hsl(var(--muted-foreground));
  max-width: 640px;
  margin-top: 16px;
}

.left-align {
  text-align: left;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.max-width-lg {
  max-width: 760px;
}

.max-width-md {
  max-width: 620px;
}

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

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

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

.hero-text {
  max-width: 720px;
  padding-top: 16px;
}

.hero-title {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: hsl(var(--background));
}

.hero-description {
  margin-top: 24px;
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: hsla(30, 20%, 98%, 0.82);
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background-color: hsl(var(--primary-light));
}

.btn-outline-light {
  border-color: hsla(30, 20%, 98%, 0.3);
  color: hsl(var(--background));
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--overlay-light);
}

.btn-dark {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
}

.btn-dark:hover {
  background-color: hsl(var(--charcoal-light));
}

.btn-arrow {
  font-size: 1rem;
  line-height: 1;
}

.card-grid {
  display: grid;
  gap: 32px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.info-card:hover {
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: hsl(var(--rose-gold-muted));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.info-card p {
  margin: 0;
  font-size: 0.96rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.feature-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 18px;
  font-size: 0.96rem;
  color: hsl(var(--foreground));
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: hsl(var(--primary));
}

.quote-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 48px;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.quote-attribution {
  margin-top: 24px;
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
}

.statement-grid {
  margin-top: 64px;
  gap: 24px;
}

.statement-item {
  padding: 24px 16px;
}

.statement-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.statement-label {
  margin-top: 6px;
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
}

.cta-wrap {
  margin-top: 48px;
}

.simple-page {
  padding: 100px 0;
}

.simple-page h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 2.5rem;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .four-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0 96px;
  }

  .hero-section {
    min-height: 85vh;
    padding-top: 24px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: auto;
  }

  .four-col {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 32px;
  }

  .quote-card blockquote {
    font-size: 1.1rem;
  }
}