/* Reedline Studio — rls- prefix | A22 peach + plum | T06 script logo + sans */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600&family=Figtree:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --rls-peach: #f3d5c0;
  --rls-peach-soft: #faf0e8;
  --rls-peach-deep: #e8b896;
  --rls-plum: #4a2c3d;
  --rls-plum-mid: #6b3d55;
  --rls-plum-soft: #8a5a72;
  --rls-ink: #2c1a24;
  --rls-muted: #6e5560;
  --rls-line: rgba(74, 44, 61, 0.18);
  --rls-paper: #fbf6f1;
  --rls-white: #fffdfb;
  --rls-font: "Figtree", "Segoe UI", sans-serif;
  --rls-script: "Caveat", cursive;
  --rls-max: 1120px;
  --rls-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--rls-font);
  color: var(--rls-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(243, 213, 192, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(232, 184, 150, 0.28), transparent 50%),
    linear-gradient(180deg, var(--rls-paper) 0%, var(--rls-peach-soft) 48%, var(--rls-paper) 100%);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rls-plum-mid); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--rls-plum); }
h1, h2, h3 { font-weight: 600; line-height: 1.25; color: var(--rls-plum); }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

.rls-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;
}

/* L04 announcement */
.rls-announce {
  background: var(--rls-plum);
  color: var(--rls-peach-soft);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
}
.rls-announce a { color: var(--rls-peach); }

/* H13 split header */
.rls-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  max-width: var(--rls-max);
  margin: 0 auto;
  border-bottom: 1px solid var(--rls-line);
}
.rls-brand {
  font-family: var(--rls-script);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 600;
  color: var(--rls-plum);
  text-decoration: none;
  line-height: 1;
}
.rls-brand:hover { color: var(--rls-plum-mid); }
.rls-brand span {
  display: block;
  font-family: var(--rls-font);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rls-muted);
  margin-top: 0.2rem;
}
.rls-header-addr {
  text-align: right;
  font-size: 0.78rem;
  color: var(--rls-muted);
  line-height: 1.4;
  max-width: 14rem;
}
.rls-header-addr strong { display: block; color: var(--rls-plum); font-weight: 600; }
.rls-menu-btn {
  appearance: none;
  border: 1px solid var(--rls-plum);
  background: transparent;
  color: var(--rls-plum);
  font-family: var(--rls-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
}
.rls-menu-btn:hover { background: var(--rls-plum); color: var(--rls-peach-soft); }

/* N15 / H13 drawer — services only */
.rls-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 88vw);
  background: var(--rls-white);
  border-left: 1px solid var(--rls-line);
  box-shadow: -12px 0 40px rgba(44, 26, 36, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s var(--rls-ease);
  z-index: 80;
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.rls-drawer.is-open { transform: translateX(0); }
.rls-drawer-close {
  align-self: flex-end;
  border: 0;
  background: none;
  font-size: 0.85rem;
  color: var(--rls-muted);
  cursor: pointer;
  margin-bottom: 1rem;
  font-family: var(--rls-font);
}
.rls-drawer a {
  position: relative;
  display: block;
  padding: 0.75rem 0;
  text-decoration: none;
  color: var(--rls-plum);
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--rls-line);
}
/* M03 nav underline slide */
.rls-drawer a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--rls-peach-deep);
  transition: width 0.35s var(--rls-ease);
}
.rls-drawer a:hover::after,
.rls-drawer a[aria-current="page"]::after { width: 100%; }
.rls-overlay {
  position: fixed; inset: 0;
  background: rgba(44, 26, 36, 0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 70;
}
.rls-overlay.is-open { opacity: 1; pointer-events: auto; }

.rls-wrap {
  max-width: var(--rls-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.rls-main { padding-bottom: 3rem; }

/* S19 breadcrumb section labels */
.rls-crumb {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rls-plum-soft);
  margin: 1.75rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px dashed var(--rls-line);
}
.rls-crumb span { color: var(--rls-muted); }

/* Y14 story open */
.rls-story {
  max-width: 38rem;
  margin: 2rem auto 2.5rem;
  font-size: 1.12rem;
}
.rls-story h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 1rem;
}
.rls-lede { font-size: 1.15rem; color: var(--rls-muted); }

/* L04 brand-only on photo */
.rls-brand-photo {
  position: relative;
  margin: 2rem 0 2.5rem;
  min-height: min(68vh, 560px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.rls-brand-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(44, 26, 36, 0.55));
}
.rls-brand-photo .rls-brand-mark {
  position: relative;
  z-index: 1;
  font-family: var(--rls-script);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--rls-peach-soft);
  padding: 1.5rem 1.75rem;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

/* C10 TOC */
.rls-toc {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  gap: 0.35rem;
  max-width: 28rem;
}
.rls-toc a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: var(--rls-plum);
  font-weight: 600;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--rls-line);
  position: relative;
}
.rls-toc a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 2px;
  background: var(--rls-plum);
  transition: width 0.3s var(--rls-ease);
}
.rls-toc a:hover::after { width: 40%; }
.rls-toc em {
  font-style: normal;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--rls-muted);
}

/* L04 masonry */
.rls-masonry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 2.5rem;
}
.rls-masonry figure {
  margin: 0;
  grid-column: span 3;
}
.rls-masonry figure:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.rls-masonry figure:nth-child(2) { grid-column: span 2; }
.rls-masonry figure:nth-child(3) { grid-column: span 2; }
.rls-masonry figure:nth-child(4) { grid-column: span 3; }
.rls-masonry figure:nth-child(5) { grid-column: span 3; }
.rls-masonry img { width: 100%; height: 100%; object-fit: cover; min-height: 160px; }
.rls-masonry figcaption {
  font-size: 0.78rem;
  color: var(--rls-muted);
  margin-top: 0.4rem;
}

.rls-about {
  max-width: 36rem;
  margin: 0 0 2.5rem;
}
.rls-about h2 { margin-top: 0; }

.rls-prose { max-width: 40rem; }
.rls-prose h2 { margin-top: 2rem; }
.rls-paths {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}
.rls-paths article h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}
.rls-paths article {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rls-line);
}

.rls-quote {
  margin: 1.75rem 0;
  padding: 1rem 0 1rem 1.1rem;
  border-left: 3px solid var(--rls-peach-deep);
  color: var(--rls-muted);
  font-style: italic;
}
.rls-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--rls-plum-soft);
}

.rls-steps { counter-reset: step; list-style: none; padding: 0; }
.rls-steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.25rem 3rem;
  border-left: 1px solid var(--rls-line);
  margin-left: 0.6rem;
}
.rls-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: -0.6rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--rls-peach);
  color: var(--rls-plum);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rls-line);
}
.rls-benefits { list-style: none; padding: 0; }
.rls-benefits li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rls-line);
}
.rls-benefits strong { display: block; color: var(--rls-plum); margin-bottom: 0.2rem; }

.rls-cta {
  display: inline-block;
  margin: 0.5rem 0 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--rls-plum);
  color: var(--rls-peach-soft) !important;
  text-decoration: none !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid var(--rls-plum);
  transition: background 0.25s ease, color 0.25s ease;
}
.rls-cta:hover { background: transparent; color: var(--rls-plum) !important; }

.rls-split {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
@media (min-width: 760px) {
  .rls-split { grid-template-columns: 1fr 1fr; align-items: start; }
  .rls-header-addr { display: block; }
}
@media (max-width: 759px) {
  .rls-header-addr { display: none; }
  .rls-masonry { grid-template-columns: 1fr 1fr; }
  .rls-masonry figure,
  .rls-masonry figure:nth-child(1),
  .rls-masonry figure:nth-child(2),
  .rls-masonry figure:nth-child(3),
  .rls-masonry figure:nth-child(4),
  .rls-masonry figure:nth-child(5) {
    grid-column: span 1;
    grid-row: auto;
  }
  .rls-masonry figure:first-child { grid-column: span 2; }
}

/* F13 footer continuation + K08 form */
.rls-footer {
  border-top: 1px solid var(--rls-line);
  padding: 2.5rem 0 2rem;
  background: transparent;
}
.rls-footer-inner {
  max-width: var(--rls-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.rls-footer h2 {
  font-family: var(--rls-script);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.rls-contact-block {
  font-size: 0.95rem;
  color: var(--rls-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.rls-contact-block a { color: var(--rls-plum-mid); }
.rls-form {
  display: grid;
  gap: 0.75rem;
  max-width: 28rem;
  margin-bottom: 2rem;
}
.rls-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rls-plum);
}
.rls-form input,
.rls-form textarea,
.rls-form select {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--rls-line);
  background: var(--rls-white);
  color: var(--rls-ink);
}
.rls-form button {
  justify-self: start;
  font: inherit;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--rls-plum);
  background: var(--rls-plum);
  color: var(--rls-peach-soft);
  cursor: pointer;
}
.rls-form button:hover { background: var(--rls-plum-mid); }
.rls-form-ok {
  display: none;
  padding: 0.85rem 1rem;
  background: rgba(232, 184, 150, 0.35);
  border: 1px solid var(--rls-peach-deep);
  color: var(--rls-plum);
  max-width: 28rem;
  margin-bottom: 1rem;
}
.rls-form-ok.is-visible { display: block; }

.rls-legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.8rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--rls-line);
}
.rls-legal-row a {
  color: var(--rls-muted);
  text-decoration: none;
  position: relative;
}
.rls-legal-row a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--rls-plum-soft);
  transition: width 0.3s var(--rls-ease);
}
.rls-legal-row a:hover::after { width: 100%; }
.rls-copy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--rls-muted);
}

/* CB01 bottom-left cookie card */
.rls-cookie {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 100;
  width: min(340px, calc(100vw - 2rem));
  background: var(--rls-white);
  border: 1px solid var(--rls-line);
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 30px rgba(44, 26, 36, 0.12);
  display: none;
}
.rls-cookie.is-visible { display: block; }
.rls-cookie p {
  font-size: 0.82rem;
  margin: 0 0 0.85rem;
  color: var(--rls-muted);
}
.rls-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.rls-cookie-actions button {
  font-family: var(--rls-font);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  border: 1px solid var(--rls-plum);
  background: transparent;
  color: var(--rls-plum);
}
.rls-cookie-actions button[data-cookie="accept"] {
  background: var(--rls-plum);
  color: var(--rls-peach-soft);
}
.rls-cookie-settings {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rls-line);
  font-size: 0.8rem;
}
.rls-cookie-settings.is-open { display: block; }
.rls-cookie-settings label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  color: var(--rls-ink);
}

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