/* SRS Care Solutions — transitional landing page
   ------------------------------------------------ */

/* Raleway — self-hosted variable font (weights 100–900) */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/raleway-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/raleway-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Plum / lavender family — built around #a44376 and #d5c9df */
  --plum:        #a44376;   /* primary accent + buttons */
  --plum-deep:   #883961;   /* accent / button hover */
  --plum-soft:   #c68cb0;   /* icons, quiet marks */
  --lavender:    #d5c9df;   /* soft secondary */
  --lavender-lt: #efe8f4;   /* map backdrop */

  --ink:         #2d2531;   /* near-black with a faint plum cast */
  --ink-soft:    #6c6475;   /* muted purple-grey */
  --line:        #e7deed;   /* hairline borders */

  --paper:       #f6f3f8;   /* page background — a whisper of lavender */
  --card:        #ffffff;   /* card surface */

  --radius:      20px;
  --shadow:      0 1px 2px rgba(61, 33, 61, .04),
                 0 14px 34px -22px rgba(61, 33, 61, .20);
  --shadow-lift: 0 2px 6px rgba(61, 33, 61, .06),
                 0 22px 44px -20px rgba(61, 33, 61, .28);

  --font:        "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Shell — one screen, header + choices + footer -------------------------- */

.shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1.75rem, 5vh, 3.25rem) clamp(1.25rem, 5vw, 3rem) clamp(1.1rem, 3vh, 1.75rem);
}

/* Hero ----------------------------------------------------------------- */

.hero {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto clamp(1.5rem, 4vh, 2.75rem);
}

.hero__logo {
  width: 46px;
  height: 46px;
  margin: 0 auto clamp(.8rem, 2vh, 1.2rem);
}

.hero__title {
  font-weight: 600;
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 .55rem;
  color: var(--ink);
}

.hero__text {
  margin: 0 auto;
  max-width: 48rem;
  color: var(--ink-soft);
  font-size: clamp(.95rem, 1.9vw, 1.05rem);
  line-height: 1.55;
  text-wrap: balance;
}

/* Choice panels ------------------------------------------------------------ */

.choices {
  margin-block: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.choice {
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.choice:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: var(--plum-soft);
}

.choice:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
}

.choice__map {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lavender-lt);
  padding: clamp(.85rem, 2.5vh, 1.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.choice__map img {
  width: 100%;
  max-height: clamp(170px, 26vh, 260px);
  object-fit: contain;
  transition: transform .3s ease;
}

.choice:hover .choice__map img { transform: scale(1.03); }

.choice__body {
  display: flex;
  flex-direction: column;
  gap: clamp(.6rem, 1.6vh, .95rem);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.choice__name {
  font-weight: 650;
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.choice__areas {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .95rem;
  font-size: .85rem;
  color: var(--ink-soft);
}

.choice__areas li {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.area-icon {
  flex: none;
  width: 13px;
  height: 13px;
  color: var(--plum-soft);
}

.choice__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--plum);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  transition: background-color .2s ease;
}

.cta-icon {
  flex: none;
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.choice:hover .choice__cta { background: var(--plum-deep); }
.choice:hover .cta-icon { transform: translateX(3px); }

/* Footer ----------------------------------------------------------------- */

.footer {
  text-align: center;
  color: var(--ink-soft);
  font-size: .8rem;
  padding-top: clamp(1.25rem, 4vh, 2.25rem);
}

.footer p { margin: 0; }

/* Responsive ---------------------------------------------------------------- */

@media (max-width: 880px) {
  .shell {
    min-height: 0;
    padding-bottom: clamp(1.75rem, 5vh, 2.5rem);
  }

  .choices {
    margin-block: 0;
    align-items: start;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .choice { max-width: 34rem; margin-inline: auto; width: 100%; }

  .choice__map { flex: none; }
  .choice__map img { max-height: clamp(180px, 30vh, 250px); }

  .choice__cta {
    align-self: stretch;
    justify-content: center;
    padding: .9rem 1.2rem;
  }
}

@media (max-width: 380px) {
  .choice__cta { font-size: .85rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .choice:hover { transform: none; }
  .choice:hover .choice__map img { transform: none; }
}
