/* ADHD in Women — adhdinwomen.uk
   Brand stylesheet
   Deep teal #2C4A47 · Warm cream #F5F0E8 · Terracotta #C68863
*/

:root {
  --teal: #2C4A47;
  --teal-deep: #1E3633;
  --cream: #F5F0E8;
  --cream-soft: #FAF6F0;
  --terracotta: #C68863;
  --terracotta-deep: #A86F4E;
  --sage: #D8DDD0;
  --text: #1F1F1F;
  --text-soft: #4A4A4A;
  --line: #E5DFD4;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1.25rem; color: var(--text-soft); }

a { color: var(--teal); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
a:hover { border-bottom-color: var(--teal); }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }

/* Header */
header.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal-deep);
  border: none;
  letter-spacing: -0.01em;
}

.logo span { color: var(--terracotta); }

nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav a {
  font-size: 0.95rem;
  color: var(--text-soft);
  border: none;
  font-weight: 500;
}
nav a:hover { color: var(--teal); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--teal); cursor: pointer; }

@media (max-width: 720px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 1.5rem; border-bottom: 1px solid var(--line); gap: 1rem; }
  nav ul.open { display: flex; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  padding: 6rem 0 5rem;
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 { max-width: 850px; margin-left: auto; margin-right: auto; }

.hero .lead {
  font-size: 1.2rem;
  color: var(--text-soft);
  max-width: 640px;
  margin: 1rem auto 2.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--teal);
  color: var(--cream);
  box-shadow: 0 4px 12px rgba(44, 74, 71, 0.15);
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(44, 74, 71, 0.22); border-bottom: none; }

.btn-accent {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 12px rgba(198, 136, 99, 0.2);
}
.btn-accent:hover { background: var(--terracotta-deep); transform: translateY(-1px); border-bottom: none; }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--cream); border-bottom-color: var(--teal); }

/* Lead magnet block */
.lead-magnet {
  background: var(--teal);
  color: var(--cream);
  padding: 4rem 0;
  text-align: center;
}

.lead-magnet h2 { color: var(--cream); }
.lead-magnet p { color: rgba(245, 240, 232, 0.85); }

.signup-form {
  max-width: 480px;
  margin: 2rem auto 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.signup-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.signup-form input[type="email"]:focus { outline: 2px solid var(--terracotta); }

.signup-form button {
  padding: 1rem 1.75rem;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.signup-form button:hover { background: var(--terracotta-deep); }

.disclaimer { font-size: 0.85rem; opacity: 0.7; margin-top: 1rem; }

/* Featured product card */
.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 4px 24px rgba(31, 31, 31, 0.04);
}

@media (max-width: 720px) {
  .product-card { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
}

.product-card .price {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--teal-deep);
  margin: 1rem 0;
  font-weight: 600;
}

.product-card .price small { font-size: 1rem; color: var(--text-soft); font-weight: 400; }

.product-image {
  background: var(--sage);
  border-radius: 6px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--teal-deep);
  text-align: center;
  padding: 2rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

/* Three-column features */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 720px) {
  .three-col { grid-template-columns: 1fr; gap: 2rem; }
}

.feature {
  text-align: left;
}

.feature .number {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* Quote / testimonial */
.quote {
  background: var(--sage);
  padding: 3rem;
  border-radius: 8px;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--teal-deep);
  text-align: center;
  margin: 2rem 0;
}

.quote::before { content: '"'; font-size: 3rem; line-height: 0; vertical-align: -0.4em; color: var(--terracotta); margin-right: 0.25em; }

/* Section variations */
.bg-cream-soft { background: var(--cream-soft); }
.bg-sage { background: var(--sage); }
.bg-teal { background: var(--teal); color: var(--cream); }
.bg-teal h2, .bg-teal h3 { color: var(--cream); }
.bg-teal p { color: rgba(245, 240, 232, 0.85); }

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

/* Article cards */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.article-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31, 31, 31, 0.06); }

.article-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.article-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.article-card p { font-size: 0.95rem; margin-bottom: 1rem; }

.article-card a.read-more { font-size: 0.9rem; font-weight: 600; border-bottom: 1px solid var(--teal); }

/* Footer */
footer.site-footer {
  background: var(--teal-deep);
  color: rgba(245, 240, 232, 0.85);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

footer.site-footer a { color: var(--cream); border: none; }
footer.site-footer a:hover { color: var(--terracotta); }

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

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

footer h4 {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a { font-size: 0.95rem; }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.15);
  padding-top: 2rem;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.7;
}

/* Sales page specific */
.checklist {
  list-style: none;
  margin: 1.5rem 0;
}

.checklist li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text-soft);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.1rem;
}

.guarantee-box {
  background: var(--cream-soft);
  border: 1px dashed var(--terracotta);
  padding: 2rem;
  border-radius: 6px;
  text-align: center;
  margin: 2rem 0;
}

.guarantee-box h3 { color: var(--terracotta-deep); margin-bottom: 0.5rem; }

/* Skip link for accessibility */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--teal); color: var(--cream); padding: 0.75rem 1rem; z-index: 200; border-radius: 4px; }
