:root {
  --ink: #30252a;
  --muted: #705f5b;
  --paper: #fff8f2;
  --paper-warm: #fff1e7;
  --petal: #f8d9d2;
  --peach: #ffd9bf;
  --apricot: #e99066;
  --coral: #c85f54;
  --berry: #9d4964;
  --plum: #553344;
  --sage: #536b60;
  --blue: #496a78;
  --line: #ecd2c8;
  --white: #ffffff;
  --shadow: 0 24px 58px rgba(85, 51, 68, 0.12);
  --soft-shadow: 0 14px 34px rgba(157, 73, 100, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(112deg, rgba(200, 95, 84, 0.025) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, var(--paper) 0%, #fff4ec 48%, #fffaf6 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--berry);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  max-width: 950px;
  font-size: clamp(2.45rem, 5.8vw, 5.1rem);
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1.1rem;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 8px;
  z-index: 5;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  background: rgba(255, 248, 242, 0.9);
  border-bottom: 1px solid rgba(236, 210, 200, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.2;
}

.brand span,
.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
}

.site-nav a,
.nav-dropdown button {
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a:hover,
.nav-dropdown button:hover,
.site-nav a[aria-current="page"] {
  color: var(--berry);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 16px);
  width: 270px;
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 10vw, 132px) 0 clamp(48px, 8vw, 90px);
  background: transparent;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(157, 73, 100, 0.035) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, rgba(233, 144, 102, 0.03) 0 1px, transparent 1px 46px);
  opacity: 0.36;
  content: "";
}

.hero::after {
  position: absolute;
  left: max(20px, calc((100vw - 1120px) / 2));
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: -1px;
  height: 1px;
  background: rgba(236, 210, 200, 0.9);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.hero-with-image .hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.hero-with-image {
  background: transparent;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-copy::before {
  position: absolute;
  top: clamp(-30px, -3vw, -16px);
  right: clamp(-76px, -5vw, -28px);
  z-index: -1;
  width: clamp(78px, 10vw, 132px);
  height: clamp(54px, 7vw, 88px);
  background: linear-gradient(135deg, rgba(233, 144, 102, 0.34), rgba(200, 95, 84, 0.18));
  border: 1px solid rgba(233, 144, 102, 0.2);
  border-radius: 56% 44% 52% 48% / 46% 58% 42% 54%;
  content: "";
  transform: rotate(-11deg);
}

.hero-grid {
  isolation: isolate;
}

.hero-grid::before,
.hero-grid::after {
  position: absolute;
  z-index: -1;
  display: block;
  border: 1px solid rgba(236, 210, 200, 0.52);
  border-radius: 18px;
  content: "";
}

.hero-grid::before {
  top: clamp(-34px, -4vw, -18px);
  right: clamp(-18px, 3vw, 44px);
  width: min(430px, 42vw);
  height: clamp(120px, 17vw, 205px);
  background: linear-gradient(135deg, rgba(248, 217, 210, 0.58), rgba(255, 217, 191, 0.3));
  box-shadow: var(--soft-shadow);
  transform: rotate(-2.5deg);
}

.hero-grid::after {
  left: clamp(-18px, 2vw, 28px);
  bottom: clamp(-34px, -3vw, -18px);
  width: min(310px, 30vw);
  height: clamp(72px, 9vw, 110px);
  background: linear-gradient(135deg, rgba(255, 217, 191, 0.42), rgba(255, 248, 242, 0.4));
  transform: rotate(2deg);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--berry), var(--coral));
  box-shadow: 0 12px 26px rgba(157, 73, 100, 0.18);
}

.button.primary:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--coral));
}

.button.secondary {
  color: var(--plum);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(157, 73, 100, 0.24);
}

.portrait-frame {
  position: relative;
  margin: 0;
  align-self: stretch;
}

.portrait-frame::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(248, 217, 210, 0.72), rgba(255, 217, 191, 0.54));
  border-radius: 18px;
  transform: rotate(2deg);
  content: "";
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border: 10px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.portrait-frame figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.content-section {
  position: relative;
  padding: clamp(68px, 9vw, 108px) 0;
}

.section-soft {
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 241, 231, 0.72) 14%, rgba(255, 241, 231, 0.72) 86%, transparent 100%);
}

.section-ink {
  color: var(--ink);
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 232, 216, 0.84) 18%, rgba(255, 241, 231, 0.94) 84%, transparent 100%);
}

.section-ink .eyebrow,
.section-ink a,
.section-ink span {
  color: var(--berry);
}

.section-ink p {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: clamp(32px, 8vw, 86px);
  align-items: start;
}

.section-heading {
  margin-bottom: 34px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 17px 18px 17px 44px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(236, 210, 200, 0.92);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.check-list li::before {
  position: absolute;
  left: 16px;
  top: 21px;
  width: 16px;
  height: 9px;
  border-radius: 999px;
  background: var(--apricot);
  transform: rotate(-16deg);
  content: "";
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.focus-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(236, 210, 200, 0.92);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.focus-card:nth-child(2),
.focus-card:nth-child(5) {
  margin-top: 28px;
}

.focus-card:hover {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 44px rgba(157, 73, 100, 0.15);
  transform: translateY(-3px) rotate(-0.4deg);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-list span {
  padding: 8px 12px;
  color: var(--plum);
  background: rgba(255, 217, 191, 0.42);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 86px) 0;
  background: transparent;
  color: var(--ink);
}

.cta-band::before {
  position: absolute;
  inset: 12px max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(112deg, rgba(157, 73, 100, 0.12), rgba(233, 144, 102, 0.18)),
    var(--paper-warm);
  border-radius: 18px;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner p {
  max-width: 680px;
  color: var(--muted);
}

.cta-inner .eyebrow {
  color: var(--berry);
}

.cta-inner .button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--berry), var(--coral));
}

.faq-list {
  width: min(860px, calc(100% - 40px));
}

details {
  padding: 22px 0;
  border-bottom: 1px solid rgba(236, 210, 200, 0.92);
}

summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

details p {
  margin-top: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 72px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 5vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 242, 0.94));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 700;
}

label span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(73, 106, 120, 0.2);
  border-color: var(--blue);
}

.hidden {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: 62px 0 32px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, var(--plum), #6e3e4b 58%, #7a493c);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--peach);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.6fr));
  gap: 34px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer div > a:not(.footer-brand) {
  display: block;
  margin: 0 0 9px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    align-items: stretch;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    display: grid;
    margin-top: 8px;
    padding: 0 0 0 14px;
    box-shadow: none;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero-with-image .hero-grid,
  .two-column,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    max-width: 430px;
  }

  .card-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow,
  .faq-list {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand span,
  .footer-brand {
    font-size: 1.05rem;
  }

  .brand small {
    max-width: 210px;
  }

  .site-nav {
    top: 74px;
    left: 14px;
    right: 14px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy::before {
    top: -18px;
    right: 8px;
    width: 72px;
    height: 48px;
    opacity: 0.62;
  }

  .focus-card {
    min-height: 190px;
  }
}
