:root {
  --color-primary: #E11D48;
  --color-secondary: #FB7185;
  --color-accent: #2563EB;
  --color-neutral-dark: #881337;
  --color-neutral-light: #FFF1F2;
  --color-text: #3F1220;
  --color-muted: #7A3B4E;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --radius: 10px;
  --shadow-sm: 0 2px 10px -4px rgba(136,19,55,.15);
  --shadow-md: 0 20px 40px -20px rgba(136,19,55,.25);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--color-text); background: var(--color-neutral-light); line-height: 1.6; font-size: 17px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 1rem; font-weight: 600; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }

/* === Header === */
.site-header { background: var(--color-neutral-light); border-bottom: 1px solid rgba(136,19,55,.12); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .9rem; }
.logo { display: inline-block; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: transparent; border: 1px solid rgba(136,19,55,.2); color: var(--color-neutral-dark); border-radius: 8px; padding: .4rem .55rem; cursor: pointer; }
.primary-nav { display: none; flex-direction: column; gap: .25rem; width: 100%; padding-top: .75rem; }
.primary-nav.is-open { display: flex; }
.primary-nav a { text-decoration: none; color: var(--color-neutral-dark); padding: .5rem 0; font-weight: 600; border-bottom: 1px solid rgba(136,19,55,.08); }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; gap: 2rem; width: auto; padding: 0; }
  .primary-nav a { border: 0; padding: 0; }
}

/* === Hero (centered) === */
.hero { padding-block: 3.5rem 2.5rem; text-align: center; }
.hero h1 { max-width: 28ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin: 0 auto 1.75rem; color: var(--color-muted); font-size: 1.15rem; }
.hero__cta { margin-bottom: 2.5rem; }
.hero__figure { margin: 0; }
.hero__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }

@media (min-width: 768px) {
  .hero { padding-block: 6rem 4rem; }
}

/* === Buttons === */
.btn { display: inline-block; padding: .85rem 1.6rem; border-radius: 999px; font-weight: 600; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; border: 1px solid transparent; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-neutral-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-accent { background: #fff; color: var(--color-primary); border-color: rgba(255,255,255,.5); }
.btn-accent:hover { background: var(--color-neutral-light); color: var(--color-neutral-dark); }

/* === Sections === */
.section { padding-block: 3.5rem; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: .5rem; }
.section-sub { color: var(--color-muted); max-width: 55ch; margin-inline: auto; }
.section-intro { text-align: center; }
.section-intro h2 { max-width: 32ch; margin-inline: auto; }
.section-intro p { color: var(--color-text); font-size: 1.075rem; }
.section-figure { margin: 1.5rem 0; }
.section-figure img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius); }

/* === Grid === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Cards === */
.card { background: #fff; border: 1px solid rgba(136,19,55,.1); border-radius: var(--radius); padding: 1.75rem; height: 100%; transition: transform .15s ease, box-shadow .15s ease; }
.card__icon { color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { color: var(--color-neutral-dark); }
.card p { color: var(--color-muted); font-size: .98rem; margin: 0; }
.card-link { display: block; text-decoration: none; color: inherit; }
.card-link:hover .card { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-secondary); }

/* === Testimonial === */
.section-testimonial { text-align: center; }
.section-testimonial blockquote { margin: 0; padding: 2rem 1rem; }
.section-testimonial p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.5rem); font-style: italic; color: var(--color-neutral-dark); line-height: 1.5; max-width: 42rem; margin: 0 auto 1.25rem; }
.section-testimonial cite { font-style: normal; color: var(--color-muted); font-size: .95rem; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; text-align: center; padding-block: 3.5rem; }
.cta-band h2 { color: #fff; max-width: 28ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 48ch; margin-left: auto; margin-right: auto; }

/* === Contact card === */
.section-contact-band { padding-block: 2rem 3rem; }
.contact-card { background: #fff; border: 1px solid rgba(136,19,55,.1); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.contact-card p { margin: .5rem 0; }

/* === Form === */
.contact-form { background: #fff; border: 1px solid rgba(136,19,55,.1); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 600; color: var(--color-neutral-dark); font-size: .95rem; }
.form-row input, .form-row textarea { font: inherit; padding: .7rem .85rem; border: 1px solid rgba(136,19,55,.2); border-radius: 8px; background: var(--color-neutral-light); color: var(--color-text); }
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; }
.form-consent { display: flex; gap: .55rem; align-items: flex-start; margin: 1rem 0 1.5rem; font-size: .9rem; color: var(--color-muted); }
.form-consent input { margin-top: .25rem; }

/* === Article detail === */
.article-detail { max-width: 65ch; margin: 3rem auto; padding-inline: 1rem; }
.article-detail__head { margin-bottom: 1.5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--color-primary); font-weight: 700; margin-bottom: .75rem; }
.article-detail h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.article-detail__sub { font-size: 1.2rem; color: var(--color-muted); line-height: 1.5; }
.article-detail__figure { margin: 2rem 0; }
.article-detail__figure img { aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; width: 100%; }
.article-detail p { font-size: 1.125rem; line-height: 1.75; margin-block: 1.25rem; }
.article-detail__foot { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(136,19,55,.15); }
.back-link { text-decoration: none; font-weight: 600; color: var(--color-primary); }
.back-link:hover { color: var(--color-neutral-dark); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3rem 1.5rem; margin-top: 3rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.footer-col h4 { color: #fff; font-family: var(--font-heading); font-size: 1rem; margin-bottom: .75rem; }
.footer-col a { color: var(--color-neutral-light); text-decoration: none; display: block; padding: .2rem 0; }
.footer-col a:hover { color: var(--color-secondary); }
.footer-logo img { height: 72px; filter: brightness(0) invert(1); margin-bottom: .75rem; }
.tagline { color: rgba(255,241,242,.75); font-size: .95rem; }
.footer-nav a { border-bottom: 0; }
.legal-links { margin-top: 1rem; }
.legal-links a { font-size: .875rem; opacity: .85; }
address { font-style: normal; font-size: .95rem; line-height: 1.7; }
address a { display: inline; }
.copyright { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,241,242,.15); text-align: center; }
.copyright small { color: rgba(255,241,242,.7); }












:root { --brand-accent: hsl(236 72% 44%); --brand-ink: hsl(95 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }

:root { --brand-accent: hsl(236 72% 44%); --brand-ink: hsl(95 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }

:root { --brand-accent: hsl(236 72% 44%); --brand-ink: hsl(95 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }

:root { --brand-accent: hsl(236 72% 44%); --brand-ink: hsl(95 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.reveal, .fade-in, .animate-in, [data-reveal], [data-animate], .scroll-reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }
