:root {
  --plum: #4B2E5A;
  --plum-2: #7B4D8C;
  --mauve: #D9C1D9;
  --paper: #F6F3EC;
  --paper-deep: #ECE6DA;
  --ink: #1F2224;
  --ink-soft: #34383D;
  --slate: #62666D;
  --line: rgba(31,34,36,.16);
  --line-strong: rgba(31,34,36,.34);
  --white: #fff;
  --rate-navy: #0F172A;
  --rate-blue: #2F6FED;
  --save-ink: #18211B;
  --save-mint: #CFE8D4;
  --ish-yellow: #F2CF66;
  --ish-ink: #1B1B1B;
  --max: 1220px;
  --radius: 28px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--mauve); color: var(--ink); }

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-height: 48px;
  flex: 0 1 auto;
}
.brand-logo {
  display: block;
  width: clamp(250px, 28vw, 330px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: -.06em;
  line-height: 1;
}
.brand-mark sup {
  font-size: .52em;
  position: relative;
  top: -.45em;
  margin-left: 1px;
  letter-spacing: 0;
}
.brand-mark-small { width: 34px; }
.brand-name {
  font-size: .95rem;
  font-weight: 780;
  letter-spacing: -.02em;
}
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  text-decoration: none;
  font-size: .84rem;
  color: var(--slate);
  font-weight: 720;
  letter-spacing: .01em;
  padding: 14px 0;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 10px;
  height: 1px;
  background: var(--plum);
  transition: right 220ms var(--ease);
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--plum); }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a[aria-current="page"]::after { right: 0; }

.kicker {
  margin: 0 0 18px;
  color: var(--plum-2);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
}
.hero {
  min-height: min(780px, calc(100vh - 92px));
  padding: clamp(80px, 12vw, 160px) 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: end;
  gap: clamp(44px, 8vw, 120px);
}
.hero h1, .section-intro h2, .studio h2, .contact-layout h2, .legal-wrap h1, .not-found-main h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
}
.hero h1 {
  max-width: 900px;
  font-size: clamp(4.4rem, 9.8vw, 9rem);
  line-height: .84;
}
.hero h1 em { color: var(--plum); font-weight: 500; }
.hero-lede {
  max-width: 670px;
  margin: 34px 0 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.65;
  letter-spacing: -.012em;
}
.arrow-link, .product-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 820;
  letter-spacing: .01em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  transition: color 180ms ease, gap 180ms var(--ease);
}
.arrow-link:hover, .arrow-link:focus-visible, .product-link:hover, .product-link:focus-visible { color: var(--plum); gap: 17px; }
.hero-note {
  align-self: end;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
}
.note-rule {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--slate);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.note-rule sup { font-size: .58em; }
.hero-note > p {
  margin: 60px 0 46px;
  max-width: 390px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.7vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.note-signoff { color: var(--slate); font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; }

.products { border-top: 1px solid var(--line); }
.section-intro { padding: 112px 0 84px; }
.section-intro h2 {
  max-width: 850px;
  font-size: clamp(3rem, 6.8vw, 6.6rem);
  line-height: .95;
}
.product { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.product-layout {
  min-height: 720px;
  padding: 84px 0;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.product-layout-reverse .product-copy { order: 2; }
.product-layout-reverse .product-art { order: 1; }
.product-copy { position: relative; z-index: 2; min-width: 0; }
.product-index {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 520px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 58px;
  color: inherit;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
}
.product h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 8vw, 8.5rem);
  line-height: .84;
  letter-spacing: -.065em;
  font-weight: 500;
}
.product-tagline { margin: 26px 0 14px; font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 780; letter-spacing: -.025em; }
.product-description { max-width: 590px; margin: 0; font-size: 1.03rem; line-height: 1.72; color: currentColor; opacity: .82; }
.feature-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 36px; }
.feature-row span {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: .7rem;
  font-weight: 820;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .82;
}
.product-link-muted { border-bottom-style: dotted; opacity: .62; pointer-events: none; }
.product-art {
  min-height: 530px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 44px;
  overflow: hidden;
}
.specimen-label {
  position: absolute;
  left: 24px; top: 22px;
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .58;
}

.product-rate { background: #F2F4F8; color: var(--rate-navy); }
.rate-art {
  background: #EAF0FB;
  color: var(--rate-navy);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 4px;
  box-shadow: 0 34px 90px rgba(15,23,42,.12);
}
.product-art-real {
  padding: 28px 28px 68px;
  align-items: stretch;
}
.mpr-hero-wrap {
  width: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px 6px 4px;
}
.mpr-hero-image {
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(15,23,42,.14));
}
.rate-art .specimen-label { color: var(--rate-navy); opacity: .58; }
.art-footer { position: absolute; bottom: 22px; left: 24px; right: 24px; display: flex; justify-content: space-between; gap: 12px; font-size: .58rem; letter-spacing: .16em; font-weight: 850; opacity: .5; }
.rate-art .art-footer { color: var(--rate-navy); opacity: .58; }

.product-save { background: #FFF7E6; color: #2A2321; }
.save-art {
  background: #FFF3E0;
  border: 1px solid rgba(42,35,33,.12);
  box-shadow: 0 30px 80px rgba(42,35,33,.10);
  color: #2A2321;
}
.save-art-real {
  padding: 28px 28px 68px;
  align-items: stretch;
}
.wts-hero-wrap {
  width: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 20px 4px 4px;
}
.wts-hero-image {
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(71,42,31,.12));
}
.save-art .specimen-label { color: #2A2321; opacity: .58; }
.save-art .art-footer { color: #2A2321; opacity: .58; }

.product-ish { background: #FFFDF6; color: var(--ish-ink); }
.ish-art { background: var(--ish-yellow); color: #161616; border: 1px solid rgba(22,22,22,.2); }
.ish-art::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(22,22,22,.24); pointer-events: none; }
.ish-stack { width: 82%; display: grid; gap: 8px; position: relative; z-index: 2; transform: rotate(-2deg); }
.ish-stack span { display: block; width: fit-content; padding: 3px 9px 7px; line-height: .83; letter-spacing: -.07em; font-weight: 950; }
.ish-question { font-size: clamp(3.8rem, 7vw, 7rem); background: #161616; color: #fff; }
.ish-before { justify-self: end; font-size: clamp(3rem, 6vw, 5.8rem); border: 4px solid #161616; }
.ish-word { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-size: clamp(5rem, 10vw, 9rem); color: #4B2E5A; }
.ish-caption { position: absolute; left: 30px; right: 30px; bottom: 24px; font-size: .6rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }

.studio {
  padding: 132px 0 120px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(50px, 9vw, 140px);
  border-top: 1px solid var(--line);
}
.studio h2 { font-size: clamp(3.5rem, 7vw, 6.8rem); line-height: .91; }
.studio-copy > p { max-width: 670px; margin: 0; color: var(--ink-soft); font-size: clamp(1.12rem, 1.8vw, 1.38rem); line-height: 1.65; }
.principles { margin-top: 68px; }
.principles > div { display: grid; grid-template-columns: 42px 185px 1fr; gap: 20px; padding: 23px 0; border-top: 1px solid var(--line); align-items: baseline; }
.principles span { color: var(--plum-2); font-size: .68rem; font-weight: 850; letter-spacing: .1em; }
.principles strong { font-size: .94rem; }
.principles p { margin: 0; color: var(--slate); font-size: .91rem; }

.contact-band { background: var(--plum); color: var(--paper); }
.contact-layout { min-height: 420px; padding: 90px 0; display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px 80px; align-content: center; }
.contact-layout .kicker { color: var(--mauve); }
.contact-layout h2 { grid-column: 1 / -1; font-size: clamp(5rem, 12vw, 11rem); line-height: .78; }
.contact-identity { align-self: end; display: grid; gap: 5px; }
.contact-identity strong { font-size: .95rem; }
.contact-identity span { color: var(--mauve); font-size: .78rem; letter-spacing: .04em; }
.contact-layout a { justify-self: end; align-self: end; color: var(--paper); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 5px; font-weight: 780; }

.site-footer { min-height: 170px; padding: 42px 0; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: start; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.footer-logo { width: 58px; height: 58px; object-fit: contain; display: block; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-end; }
.footer-links a { color: var(--slate); text-decoration: none; font-size: .82rem; font-weight: 700; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--plum); }
.site-footer > p { grid-column: 1 / -1; margin: 12px 0 0; color: var(--slate); font-size: .74rem; }

/* Legal and support pages */
.subpage { min-height: 100vh; }
.legal-wrap {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
  padding: 94px 0 120px;
}
.legal-wrap h1 { font-size: clamp(4.2rem, 9vw, 7.7rem); line-height: .86; margin-bottom: 26px; }
.legal-wrap .updated { color: var(--slate); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 50px; }
.legal-wrap > p:not(.kicker):not(.updated), .legal-wrap li { color: var(--ink-soft); font-size: 1rem; line-height: 1.78; }
.legal-wrap h2 { margin: 55px 0 14px; font-size: 1.1rem; letter-spacing: -.02em; }
.legal-wrap ul { padding-left: 22px; }
.legal-wrap .text-link { color: var(--plum); font-weight: 760; text-underline-offset: 3px; }
.support-card {
  margin: 44px 0 58px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.28);
}
.support-card h2 { margin-top: 0; }
.support-card p:last-child { margin-bottom: 0; }
.support-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 26px; }
.support-product { background: var(--paper); padding: 22px; }
.support-product span { display: block; color: var(--plum-2); font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 9px; }
.support-product strong { display: block; margin-bottom: 7px; }
.support-product p { margin: 0; color: var(--slate); font-size: .86rem; line-height: 1.55; }

.not-found { min-height: 100vh; display: flex; flex-direction: column; }
.not-found-main { flex: 1; width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: 100px 0 140px; }
.not-found-main h1 { max-width: 820px; font-size: clamp(4.4rem, 10vw, 8.8rem); line-height: .83; }
.not-found-main > p:not(.kicker) { max-width: 500px; margin: 30px 0; color: var(--slate); font-size: 1.08rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; background: var(--ink); color: var(--paper); text-decoration: none; font-size: .84rem; font-weight: 820; }
.button:hover, .button:focus-visible { background: var(--plum); }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-note { width: min(520px, 100%); }
  .product-layout, .product-layout-reverse { grid-template-columns: 1fr; min-height: auto; }
  .product-layout-reverse .product-copy, .product-layout-reverse .product-art { order: initial; }
  .product-art { min-height: 500px; }
  .studio { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-layout h2 { grid-column: 1; }
  .contact-layout a { justify-self: start; }
}

@media (max-width: 680px) {
  .shell, .legal-wrap, .not-found-main { width: min(100% - 28px, var(--max)); }
  .site-header { min-height: 76px; gap: 14px; }
  .brand-logo { width: 210px; max-height: 64px; }
  .brand-name { display: none; }
  .site-nav { gap: 17px; }
  .site-nav a { font-size: .78rem; }
  .site-nav a:nth-child(2) { display: none; }

  .hero { padding: 62px 0 52px; gap: 50px; }
  .hero h1 { font-size: clamp(3.25rem, 15.2vw, 4.6rem); line-height: .9; letter-spacing: -.05em; }
  .hero-lede { margin: 24px 0 26px; font-size: 1rem; line-height: 1.58; }
  .hero-note > p { margin: 32px 0 28px; font-size: clamp(1.45rem, 7vw, 1.8rem); }

  .section-intro { padding: 64px 0 52px; }
  .section-intro h2 { font-size: clamp(2.7rem, 12vw, 3.8rem); line-height: .98; letter-spacing: -.05em; }

  .product-layout { padding: 54px 0 62px; gap: 40px; }
  .product-index { margin-bottom: 28px; }
  .product h3 { font-size: clamp(3.1rem, 13.5vw, 4.35rem); line-height: .9; letter-spacing: -.055em; }
  .product-tagline { margin: 22px 0 12px; font-size: 1.12rem; }
  .product-description { font-size: .98rem; line-height: 1.64; }
  .feature-row { margin: 24px 0 30px; }
  .product-art { min-height: 350px; padding: 28px; }
  .product-art-real { min-height: 330px; padding: 24px 16px 60px; }
  .mpr-hero-wrap { padding: 18px 0 0; }
  .rate-art .art-footer { left: 18px; right: 18px; bottom: 18px; font-size: .52rem; letter-spacing: .11em; }
  .rate-art::before { width: 280px; height: 280px; }
  .rate-art::after { width: 215px; height: 215px; }
  .save-art-real { min-height: 330px; padding: 24px 16px 60px; }
  .wts-hero-wrap { padding: 14px 0 0; }
  .save-art .art-footer { left: 18px; right: 18px; bottom: 18px; font-size: .52rem; letter-spacing: .11em; }

  .studio { padding: 72px 0 68px; gap: 30px; }
  .studio h2 { font-size: clamp(2.9rem, 12.5vw, 3.9rem); line-height: .96; }
  .studio-copy > p { font-size: 1rem; line-height: 1.6; }
  .principles { margin-top: 48px; }
  .principles > div { grid-template-columns: 34px 1fr; gap: 12px; padding: 20px 0; }
  .principles p { grid-column: 2; }

  .contact-layout { min-height: 300px; padding: 58px 0; grid-template-columns: 1fr; gap: 24px; }
  .contact-layout h2 { font-size: clamp(4rem, 17vw, 5.5rem); line-height: .84; }
  .contact-identity { grid-column: 1; }
  .contact-layout a { grid-column: 1; justify-self: start; }

  .site-footer { grid-template-columns: 1fr; }
  .footer-logo { width: 52px; height: 52px; }
  .footer-links { justify-content: flex-start; gap: 18px; }
  .site-footer > p { grid-column: 1; }

  .legal-wrap { padding: 62px 0 82px; }
  .legal-wrap h1 { font-size: clamp(3.3rem, 14vw, 4.7rem); line-height: .9; }
  .not-found-main h1 { font-size: clamp(3.35rem, 14vw, 4.8rem); line-height: .9; }
  .support-products { grid-template-columns: 1fr; }
}

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