/* Luck Life Therapy Ghana — Refined Landing Page Styles */

:root {
  /* Brand colours drawn from the Luck Life logo: warm orange + natural green */
  --orange-900: #7c2e1a;
  --orange-800: #963b22;
  --orange-700: #b44d2f;
  --orange-600: #c15b3a;
  --orange-500: #d4714e;
  --orange-100: #f7e3dc;
  --orange-50: #fdf5f2;

  --green-900: #2f4a2a;
  --green-800: #3e5f37;
  --green-700: #4f7347;
  --green-600: #5a6b52;
  --green-100: #e6ebe4;
  --green-50: #f4f7f3;

  /* Warm neutrals — tinted toward the brand orange */
  --charcoal: #2a2522;
  --brown-700: #4a423d;
  --brown-600: #6b6059;
  --brown-400: #9b8f86;
  --brown-200: #e0d8d2;
  --brown-100: #f5f0ec;
  --cream: #fbf7f3;
  --white: #fffefd;

  --radius-sm: 0.5rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;

  --shadow-sm: 0 1px 2px 0 rgb(42 37 34 / 0.05);
  --shadow-md: 0 4px 12px -2px rgb(42 37 34 / 0.08);
  --shadow-lg: 0 12px 28px -6px rgb(42 37 34 / 0.12);

  --font-display: 'Yeseva One', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.65;
  font-size: 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  font-weight: 400;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 254, 253, 0.96);
  border-bottom: 1px solid var(--brown-200);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-luck {
  color: var(--orange-600);
}

.logo-life {
  color: var(--green-700);
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--brown-700);
}

.nav a:hover {
  color: var(--orange-700);
}

@media (min-width: 640px) {
  .nav {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--orange-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--orange-700);
  box-shadow: var(--shadow-lg);
}

.btn-text {
  color: var(--orange-800);
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 2px solid var(--orange-100);
  border-radius: 0;
}

.btn-text:hover {
  border-bottom-color: var(--orange-600);
  transform: none;
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(160deg, var(--white) 0%, var(--orange-50) 100%);
  overflow: hidden;
}

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

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.hero-text {
  max-width: 34rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-700);
  font-family: var(--font-body);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: 1.25rem;
}

.lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--brown-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--brown-100);
}

.hero-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.section-intro {
  max-width: 44rem;
  margin-bottom: 3rem;
}

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

.section-intro h2,
.benefits-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--brown-600);
  line-height: 1.7;
}

/* Therapy section */
.section-therapy {
  background-color: var(--white);
}

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  counter-reset: feature;
}

.therapy-feature {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--brown-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.therapy-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 1rem;
}

.therapy-feature h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.therapy-feature p {
  color: var(--brown-600);
  margin: 0;
}

/* Benefits section */
.section-benefits {
  background-color: var(--green-50);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 800px) {
  .benefits-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.875rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: var(--brown-700);
  font-weight: 500;
}

.benefit-list svg {
  flex-shrink: 0;
  color: var(--green-700);
  margin-top: 0.15rem;
}

.benefits-quote {
  display: flex;
  align-items: center;
}

.benefits-quote blockquote {
  margin: 0;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-100);
}

.benefits-quote blockquote > svg {
  color: var(--orange-500);
  margin-bottom: 1rem;
}

.benefits-quote p {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--charcoal);
  line-height: 1.4;
  margin: 0;
}

/* Process section */
.section-process {
  background-color: var(--white);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 2rem;
  text-align: center;
}

.process-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.process-step {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--orange-600);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.process-list h3 {
  font-size: 1.375rem;
  margin: 0.25rem 0 0;
}

.process-list p {
  color: var(--brown-600);
  max-width: 24ch;
  margin: 0;
}

/* Testimonials */
.section-testimonials {
  background-color: var(--orange-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.testimonial {
  margin: 0;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--brown-200);
  box-shadow: var(--shadow-sm);
}

.testimonial > svg {
  color: var(--orange-500);
  margin-bottom: 1rem;
}

.testimonial p {
  font-size: 1.0625rem;
  color: var(--brown-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial footer {
  font-weight: 600;
  color: var(--brown-600);
  font-size: 0.9375rem;
}

/* Contact section */
.section-contact {
  background-color: var(--charcoal);
  color: var(--brown-100);
}

.section-contact h2,
.section-contact h3 {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-text {
  max-width: 32rem;
}

.contact-text .eyebrow {
  color: var(--orange-500);
}

.contact-text .section-lead {
  color: var(--brown-400);
}

.contact-btn {
  margin-top: 1.5rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.15s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-card svg {
  flex-shrink: 0;
  color: var(--orange-500);
  margin-top: 0.15rem;
}

.contact-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.contact-card p {
  color: var(--brown-400);
  margin: 0;
  font-size: 0.9375rem;
}

/* Footer */
.site-footer {
  background: var(--brown-100);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--brown-600);
  margin: 0;
}

.footer-link {
  font-weight: 600;
  color: var(--orange-700);
  font-size: 0.9375rem;
}

.footer-link:hover {
  color: var(--orange-900);
}

/* Focus states */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange-600);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .therapy-feature,
  .contact-card {
    transition: none;
  }
}
