:root {
  --blue: #80a2bd;
  --ink: #29292e;
  --wine: #7b1b29;
  --pink: #d21c4b;
  --paper: #f5f3f0;
  --white: #ffffff;
  --line: rgba(41, 41, 46, 0.14);
  --shadow: 0 24px 70px rgba(41, 41, 46, 0.11);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 100;
  padding: 10px 16px; background: var(--white); border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid rgba(41, 41, 46, 0.08);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.brand img { width: 238px; height: auto; }
nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 700; }
nav a { text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--wine); }
.nav-contact { padding: 10px 18px; border: 1px solid var(--wine); border-radius: 999px; }

.hero {
  position: relative; overflow: hidden;
  min-height: 660px; display: grid; align-items: center;
  background:
    radial-gradient(circle at 84% 20%, rgba(128,162,189,.18), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fff 58%, #f4f0ee 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: center; padding-block: 100px 110px; }
.hero-copy { max-width: 820px; position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 16px; color: var(--wine); font-size: 13px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 26px; font-size: clamp(48px, 6.4vw, 84px); max-width: 900px; }
h1 span { color: var(--wine); }
h2 { margin-bottom: 22px; font-size: clamp(36px, 4.5vw, 58px); }
h3 { margin-bottom: 16px; font-size: 28px; }
.hero-text { max-width: 690px; margin: 0; font-size: clamp(19px, 2vw, 23px); color: #54545b; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 12px 24px; border-radius: 999px;
  text-decoration: none; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--wine); box-shadow: 0 12px 28px rgba(123,27,41,.22); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.72); }

.hero-mark { position: relative; min-height: 420px; }
.mark {
  position: absolute; top: 50%; width: 66px; height: 340px;
  border: solid var(--wine); border-width: 0 18px 18px 0;
  transform: translateY(-50%) rotate(135deg) skew(5deg,5deg);
  opacity: .94;
}
.mark-one { right: 210px; }
.mark-two { right: 145px; }
.mark-three { right: 80px; }
.mark-four { right: 15px; border-color: var(--pink); opacity: .22; }

.section { padding-block: 110px; }
.section-heading { max-width: 780px; margin-bottom: 50px; }
.section-heading > p:last-child { max-width: 650px; color: #66666d; font-size: 19px; }
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative; min-height: 480px; padding: 36px 32px;
  border: 1px solid rgba(41,41,46,.08); border-radius: var(--radius);
  background: var(--white); box-shadow: 0 12px 35px rgba(41,41,46,.05);
}
.service-card::after {
  content: ""; position: absolute; left: 32px; right: 32px; bottom: 0; height: 5px;
  border-radius: 5px 5px 0 0; background: var(--wine); transform: scaleX(.34); transform-origin: left;
  transition: transform .25s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-number { display: inline-block; margin-bottom: 54px; color: var(--blue); font-weight: 900; font-size: 14px; }
.service-card p { color: #626269; }
.service-card ul { margin: 26px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { position: relative; padding-left: 20px; margin: 8px 0; font-size: 15px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; background: var(--wine); border-radius: 50%; }

.about { background: var(--ink); color: var(--white); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.about .eyebrow { color: #aac3d5; }
.about-copy { font-size: 21px; color: rgba(255,255,255,.76); }
.about-copy p:first-child { margin-top: 0; }
.charity-note {
  display: grid; gap: 6px; margin-top: 42px; padding: 24px 26px;
  border-left: 4px solid var(--pink); background: rgba(255,255,255,.06); color: var(--white);
}
.charity-note span { color: rgba(255,255,255,.72); font-size: 16px; }

.contact { background: var(--white); }
.contact-panel {
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
  padding: 56px 60px; border-radius: 30px; background: var(--paper); box-shadow: var(--shadow);
}
.contact-panel h2 { max-width: 680px; margin-bottom: 16px; }
.contact-panel p:not(.eyebrow) { margin: 0; color: #64646b; }
.email-link {
  position: relative; display: grid; min-width: 340px; padding: 24px 62px 24px 26px;
  border: 1px solid rgba(123,27,41,.16); border-radius: 16px; background: var(--white);
  text-decoration: none; transition: transform .2s ease, border-color .2s ease;
}
.email-link:hover { transform: translateY(-2px); border-color: var(--wine); }
.email-link > span:first-child { color: #777780; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.email-link strong { font-size: 19px; }
.arrow { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); color: var(--wine); font-size: 24px; }

.site-footer { padding-block: 34px; background: #202025; color: rgba(255,255,255,.65); font-size: 13px; }
.footer-inner { display: grid; grid-template-columns: 220px 1fr auto; gap: 28px; align-items: center; }
.footer-inner img { width: 220px; height: auto; }
.footer-inner p { margin: 0; text-align: center; }
.footer-inner a { color: var(--white); text-underline-offset: 4px; }

.privacy-page { background: var(--paper); min-height: 100vh; }
.simple-header { padding: 24px 0; background: var(--white); border-bottom: 1px solid var(--line); }
.simple-header img { width: 238px; }
.privacy-content { max-width: 820px; padding-block: 90px; }
.privacy-content h1 { font-size: clamp(42px, 6vw, 68px); }
.privacy-content h2 { margin-top: 44px; font-size: 28px; }
.privacy-content p, .privacy-content li { color: #56565d; }
.back-link { display: inline-block; margin-top: 24px; color: var(--wine); font-weight: 800; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; padding-block: 80px 90px; }
  .hero-mark { position: absolute; right: -180px; top: 90px; width: 400px; opacity: .14; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-number { margin-bottom: 30px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-panel { grid-template-columns: 1fr; padding: 42px; }
  .email-link { min-width: 0; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .header-inner { min-height: 70px; }
  .brand img { width: 184px; }
  nav { gap: 14px; font-size: 13px; }
  nav a:not(.nav-contact) { display: none; }
  .nav-contact { padding: 8px 14px; }
  .hero { min-height: auto; }
  .hero-mark { display: none; }
  .hero-grid { padding-block: 68px 74px; }
  .hero-text { font-size: 19px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .section { padding-block: 76px; }
  .service-card { padding: 30px 24px; }
  .contact-panel { padding: 34px 24px; border-radius: 22px; }
  .email-link { padding: 20px 50px 20px 20px; overflow-wrap: anywhere; }
  .email-link strong { font-size: 17px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner img { margin-inline: auto; }
  .footer-inner p { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
