/* Rooks Clunked Clay — rc- | A04 soft blue-gray coastal | T04 didone + humanistic sans | L15 H20 Y21 C20 S19 F10 N17 M13 K02 CB18 */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,600;0,6..96,700;1,6..96,400&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --rc-bg: #e8eef2;
  --rc-bg-soft: #f4f7f9;
  --rc-ink: #1e2a32;
  --rc-muted: #5a6b76;
  --rc-line: #9aafbc;
  --rc-accent: #3d6b7a;
  --rc-accent-deep: #2a4f5c;
  --rc-panel: #d5e0e7;
  --rc-white: #fafcfd;
  --rc-font-display: "Bodoni Moda", "Didot", Georgia, serif;
  --rc-font-body: "Source Sans 3", "Source Sans Pro", sans-serif;
  --rc-panel-w: min(34vw, 22rem);
  --rc-header-h: 4.25rem;
  --rc-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.rc-body {
  margin: 0;
  font-family: var(--rc-font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--rc-ink);
  background:
    radial-gradient(ellipse at 20% 0%, #dfe8ee 0%, transparent 50%),
    linear-gradient(165deg, var(--rc-bg) 0%, var(--rc-bg-soft) 45%, #dce6ec 100%);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rc-accent-deep); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--rc-accent); }
h1, h2, h3, .rc-display { font-family: var(--rc-font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }

/* H20 — typographic rule header with brand on the rule */
.rc-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(244, 247, 249, 0.92);
  backdrop-filter: blur(8px);
  transition: padding 0.35s var(--rc-ease), box-shadow 0.35s var(--rc-ease);
  padding: 1.1rem 0 0.55rem;
}
.rc-header.is-condensed {
  padding: 0.35rem 0 0.25rem;
  box-shadow: 0 1px 0 rgba(30, 42, 50, 0.08);
}
.rc-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
}
.rc-header__rule {
  display: block;
  height: 1px;
  background: var(--rc-ink);
  width: 100%;
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  width: calc(100% - 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.rc-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.rc-brand {
  font-family: var(--rc-font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: var(--rc-ink);
  text-decoration: none;
  background: var(--rc-bg-soft);
  padding: 0 0.65rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.rc-header.is-condensed .rc-brand { font-size: 1.15rem; }
.rc-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--rc-bg-soft);
  padding: 0 0.35rem 0 0.65rem;
}
.rc-menu-btn {
  font-family: var(--rc-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--rc-ink);
  color: var(--rc-ink);
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}
.rc-menu-btn:hover,
.rc-menu-btn[aria-expanded="true"] {
  background: var(--rc-ink);
  color: var(--rc-white);
}

/* N17 — fade-in mega panel */
.rc-mega {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(30, 42, 50, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--rc-ease), visibility 0.35s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5.5rem 1rem 2rem;
}
.rc-mega.is-open {
  opacity: 1;
  visibility: visible;
}
.rc-mega__panel {
  background: var(--rc-white);
  border: 2px solid var(--rc-ink);
  width: min(720px, 100%);
  max-height: calc(100vh - 7rem);
  overflow: auto;
  padding: 1.75rem 1.5rem 2rem;
  transform: translateY(-12px);
  transition: transform 0.35s var(--rc-ease);
}
.rc-mega.is-open .rc-mega__panel { transform: translateY(0); }
.rc-mega__title {
  font-family: var(--rc-font-display);
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rc-line);
}
.rc-mega__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.35rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rc-mega__grid a {
  display: block;
  padding: 0.45rem 0;
  color: var(--rc-ink);
  text-decoration: none;
  font-size: 1.05rem;
  border-bottom: 1px solid transparent;
}
.rc-mega__grid a:hover {
  border-bottom-color: var(--rc-accent);
  color: var(--rc-accent-deep);
}
.rc-mega__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid var(--rc-ink);
  background: transparent;
  font: inherit;
  padding: 0.25rem 0.55rem;
  cursor: pointer;
}
.rc-mega__panel { position: relative; }

/* L15 — left fixed brand panel + right stacked sections */
.rc-shell {
  display: grid;
  grid-template-columns: var(--rc-panel-w) 1fr;
  min-height: calc(100vh - var(--rc-header-h));
  max-width: 1200px;
  margin: 0 auto;
}
.rc-side {
  position: sticky;
  top: var(--rc-header-h);
  align-self: start;
  height: calc(100vh - var(--rc-header-h));
  padding: 2rem 1.25rem 2rem 1.5rem;
  border-right: 1px solid var(--rc-line);
  background: linear-gradient(180deg, var(--rc-panel) 0%, #c9d7e0 100%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.rc-side__mark {
  font-family: var(--rc-font-display);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.05;
  margin: 0;
  color: var(--rc-ink);
}
.rc-side__tag {
  font-size: 0.92rem;
  color: var(--rc-muted);
  margin: 0;
}
.rc-side__meta {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--rc-muted);
  line-height: 1.5;
}
.rc-side__meta strong { color: var(--rc-ink); font-weight: 600; display: block; margin-bottom: 0.25rem; }
.rc-main {
  padding: 0 0 3rem;
  min-width: 0;
}

/* Y21 — single object on empty field */
.rc-hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 2.5rem;
  background:
    radial-gradient(ellipse at 50% 60%, #f7fafb 0%, transparent 55%),
    linear-gradient(180deg, #eef3f6 0%, var(--rc-bg) 100%);
  text-align: center;
  position: relative;
}
.rc-hero__object {
  width: min(320px, 70%);
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 18px 28px rgba(42, 79, 92, 0.18));
}
.rc-hero__object img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(61, 107, 122, 0.25);
}
.rc-hero__brand {
  font-family: var(--rc-font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 0.5rem;
  color: var(--rc-ink);
}
.rc-hero__line {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  color: var(--rc-muted);
  font-size: 1.05rem;
}
.rc-cta {
  display: inline-block;
  font-family: var(--rc-font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--rc-white);
  background: var(--rc-accent-deep);
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--rc-accent-deep);
  transition: background 0.25s, color 0.25s;
}
.rc-cta:hover { background: transparent; color: var(--rc-accent-deep); }
.rc-cta--ghost {
  background: transparent;
  color: var(--rc-accent-deep);
  margin-left: 0.5rem;
}
.rc-cta--ghost:hover { background: var(--rc-accent-deep); color: var(--rc-white); }

/* S19 — breadcrumb path section labels */
.rc-crumb {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rc-muted);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.rc-crumb span { color: var(--rc-accent); }
.rc-section {
  padding: 2.75rem 1.75rem;
  border-top: 1px solid transparent;
  scroll-margin-top: 5rem;
}
.rc-section__title {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
}

/* C20 — inline figure + sidenote column */
.rc-figure-note {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.65fr);
  gap: 1.5rem 2rem;
  align-items: start;
  margin: 1.5rem 0;
}
.rc-figure-note figure { margin: 0; }
.rc-figure-note figcaption {
  font-size: 0.85rem;
  color: var(--rc-muted);
  margin-top: 0.5rem;
  font-style: italic;
}
.rc-figure-note aside {
  font-size: 0.92rem;
  color: var(--rc-muted);
  border-left: 2px solid var(--rc-line);
  padding-left: 1rem;
  line-height: 1.55;
}
.rc-figure-note aside strong {
  display: block;
  color: var(--rc-ink);
  font-family: var(--rc-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-style: normal;
}

.rc-prose { max-width: 42rem; }
.rc-prose--narrow { max-width: 36rem; }

.rc-list-plain {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.rc-list-plain li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(154, 175, 188, 0.55);
}
.rc-list-plain li:first-child { border-top: 1px solid rgba(154, 175, 188, 0.55); }

.rc-price {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(154, 175, 188, 0.55);
}
.rc-price__name { font-weight: 600; }
.rc-price__val {
  font-family: var(--rc-font-display);
  white-space: nowrap;
  color: var(--rc-accent-deep);
}

/* K02 — split details | form */
.rc-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.rc-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
}
.rc-form input,
.rc-form textarea,
.rc-form select {
  width: 100%;
  font: inherit;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--rc-line);
  background: var(--rc-white);
  color: var(--rc-ink);
  margin-bottom: 0.9rem;
}
.rc-form textarea { min-height: 8rem; resize: vertical; }
.rc-form button[type="submit"] {
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--rc-accent-deep);
  background: var(--rc-accent-deep);
  color: var(--rc-white);
  cursor: pointer;
}
.rc-form button[type="submit"]:hover {
  background: transparent;
  color: var(--rc-accent-deep);
}
.rc-form-success {
  display: none;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rc-accent);
  color: var(--rc-accent-deep);
  margin-bottom: 1rem;
  background: rgba(61, 107, 122, 0.08);
}
.rc-form-success.is-visible { display: block; }

.rc-page-hero {
  padding: 2.5rem 1.75rem 1rem;
}
.rc-page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.5rem;
}
.rc-lede { color: var(--rc-muted); max-width: 36rem; margin: 0; }

.rc-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.rc-gallery figure { margin: 0; }
.rc-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.rc-gallery figcaption {
  font-size: 0.82rem;
  color: var(--rc-muted);
  margin-top: 0.4rem;
}

.rc-band {
  background: var(--rc-panel);
  margin: 0;
  padding: 2.5rem 1.75rem;
}

/* F10 — large city/monogram · one sentence · legal only */
.rc-footer {
  margin-top: 2rem;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid var(--rc-line);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(213, 224, 231, 0.55));
}
.rc-footer__mono {
  font-family: var(--rc-font-display);
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  line-height: 0.9;
  margin: 0 0 1rem;
  color: var(--rc-accent-deep);
  letter-spacing: -0.03em;
  opacity: 0.85;
}
.rc-footer__sentence {
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  color: var(--rc-muted);
  font-size: 1rem;
}
.rc-footer__legal {
  font-size: 0.8rem;
  color: var(--rc-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: center;
}
.rc-footer__legal a {
  color: var(--rc-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.rc-footer__legal a:hover { border-bottom-color: var(--rc-accent); color: var(--rc-accent-deep); }

/* Inner pages without L15 shell */
.rc-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}
.rc-wrap--wide { max-width: 1100px; }

/* CB18 — strong border, no fill */
.rc-cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 100;
  max-width: 420px;
  background: transparent;
  border: 2px solid var(--rc-ink);
  padding: 1rem 1.1rem;
  color: var(--rc-ink);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(250, 252, 253, 0.65);
}
.rc-cookie[hidden] { display: none !important; }
.rc-cookie p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
}
.rc-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.rc-cookie__actions button {
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  border: 1.5px solid var(--rc-ink);
  background: transparent;
  color: var(--rc-ink);
  cursor: pointer;
}
.rc-cookie__actions button:hover,
.rc-cookie__actions .rc-cookie__accept {
  background: var(--rc-ink);
  color: var(--rc-white);
}
.rc-cookie__settings-panel {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rc-ink);
  font-size: 0.85rem;
}
.rc-cookie__settings-panel.is-open { display: block; }
.rc-cookie__settings-panel label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

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

@media (max-width: 900px) {
  .rc-shell { grid-template-columns: 1fr; }
  .rc-side {
    position: relative;
    top: auto;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--rc-line);
    padding: 1.5rem;
  }
  .rc-side__meta { margin-top: 0.5rem; }
  .rc-figure-note { grid-template-columns: 1fr; }
  .rc-figure-note aside {
    border-left: none;
    border-top: 2px solid var(--rc-line);
    padding-left: 0;
    padding-top: 0.85rem;
  }
  .rc-contact-split { grid-template-columns: 1fr; }
  .rc-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .rc-cta--ghost { display: inline-block; margin: 0.5rem 0 0; }
  .rc-cookie { left: 0.65rem; right: 0.65rem; bottom: 0.65rem; }
}
