:root {
  --ink: #0d0d0c;
  --ink-soft: #181817;
  --paper: #f1efe9;
  --paper-deep: #dedbd2;
  --porcelain: #344b57;
  --porcelain-light: #6f858d;
  --oxblood: #6a1f25;
  --line-dark: rgba(255, 255, 255, 0.2);
  --line-light: rgba(13, 13, 12, 0.18);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --sans: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  word-break: keep-all;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 72px;
  padding: 0 38px;
  color: var(--paper);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(241, 239, 233, 0.96);
  border-color: var(--line-light);
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 12px;
}

.desktop-nav a,
.header-note {
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-note {
  font-size: 10px;
  opacity: 0.72;
}

.header-booking {
  display: inline-flex;
  justify-self: end;
  min-width: 104px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  transition: color 200ms ease, background-color 200ms ease;
}

.header-booking:hover,
.header-booking:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.site-header.is-scrolled .header-booking:hover,
.site-header.is-scrolled .header-booking:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.menu-button {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 44px);
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: #10100f;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-color: #10100f;
  background-image: url("./assets/hero-man.jpg");
  background-image: url("./assets/hero-man-1440.webp");
  background-repeat: no-repeat;
  background-position: 72% center;
  background-size: auto 100%;
  filter: brightness(1.08);
  transform: scale(1.02);
  animation: hero-settle 1100ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 12, 0.12);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 55%);
  padding: 110px 0 60px 7.5%;
}

.kicker,
.section-index {
  margin-bottom: 28px;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: 8rem;
  line-height: 0.96;
}

.hero-lead {
  margin-bottom: 42px;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid;
  border-radius: 0;
  cursor: pointer;
  font-size: 13px;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--paper);
  background: transparent;
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: transparent;
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 13px;
}

.text-link span,
.arrow-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(4px);
}

.arrow-link:hover span,
.arrow-link:focus-visible span {
  transform: translateX(5px);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 28px;
  left: 38px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  opacity: 0.72;
}

.running-line {
  overflow: hidden;
  color: var(--paper);
  background: var(--oxblood);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.running-line > div {
  display: flex;
  width: max-content;
  min-height: 44px;
  align-items: center;
  gap: 26px;
  padding: 0 26px;
  animation: running-line 26s linear infinite;
}

.running-line span {
  font-size: 9px;
}

.running-line i {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.section-pad {
  padding: 120px 7.5%;
}

.manifesto {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.8fr);
  gap: 9%;
  align-items: end;
}

.manifesto h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: 4.8rem;
}

.manifesto-copy > p {
  margin-bottom: 52px;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.9;
}

.manifesto-copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.manifesto-copy dl div {
  padding-top: 16px;
}

.manifesto-copy dt {
  font-family: var(--serif);
  font-size: 1.8rem;
}

.manifesto-copy dd {
  margin: 2px 0 0;
  font-size: 10px;
}

.collection {
  display: grid;
  min-height: 840px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.collection-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #201d1b;
}

.collection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.collection-visual:hover img {
  transform: scale(1.025);
}

.image-caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  padding: 5px 8px;
  color: var(--paper);
  background: rgba(13, 13, 12, 0.55);
  font-size: 9px;
}

.collection-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 12%;
  padding-left: 12%;
}

.collection-mens .collection-copy {
  color: var(--paper);
  background: var(--porcelain);
}

.collection-womens {
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
}

.collection-womens .collection-copy {
  background: var(--paper-deep);
}

.womens-visual {
  background: var(--oxblood);
}

.collection-copy h2 {
  margin-bottom: 44px;
  font-size: 4.4rem;
}

.collection-statement {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.55;
}

.collection-copy > p:not(.section-index, .collection-statement) {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.8;
}

.feature-list {
  margin: 42px 0;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

.feature-list li span {
  opacity: 0.56;
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  color: var(--paper);
  background: var(--ink);
}

.craft-image {
  min-height: 760px;
  overflow: hidden;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.72) contrast(1.05);
}

.craft-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.craft-copy h2 {
  max-width: 760px;
  margin-bottom: 42px;
  font-size: 4.1rem;
}

.craft-copy > p:not(.section-index) {
  max-width: 580px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.76;
}

.craft-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 580px;
  margin-top: 54px;
}

.craft-notes div {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.craft-notes strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.craft-notes span {
  font-size: 10px;
  opacity: 0.6;
}

.fabric-lab {
  color: var(--paper);
  background: #242321;
}

.fabric-heading {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr;
  gap: 5%;
  align-items: end;
  margin-bottom: 72px;
}

.fabric-heading .section-index {
  align-self: start;
}

.fabric-heading h2 {
  margin: 0;
  font-size: 4.4rem;
}

.fabric-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.72;
}

.fabric-console {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  min-height: 520px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.fabric-preview {
  --fabric-base: #1d2930;
  --fabric-line: rgba(180, 197, 202, 0.14);
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: flex-end;
  overflow: hidden;
  padding: 48px;
  border-right: 1px solid var(--line-dark);
  background-color: var(--fabric-base);
  transition: background-color 420ms ease;
}

.fabric-preview::before,
.fabric-preview::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.fabric-preview::before {
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 31px,
    var(--fabric-line) 32px,
    transparent 33px
  );
}

.fabric-preview::after {
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 47px,
    var(--fabric-line) 48px,
    transparent 49px
  );
}

.fabric-sample {
  position: absolute;
  top: -12%;
  right: 8%;
  width: 48%;
  aspect-ratio: 0.66;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  transform: rotate(7deg);
}

.fabric-readout {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.fabric-readout > span {
  font-size: 9px;
  opacity: 0.65;
}

.fabric-readout h3 {
  margin: 8px 0 12px;
  font-size: 2.8rem;
}

.fabric-readout p {
  margin: 0;
  font-size: 13px;
  opacity: 0.74;
}

.fabric-options {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}

.fabric-option {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  cursor: pointer;
  text-align: left;
  transition: background-color 200ms ease;
}

.fabric-option:last-child {
  border-bottom: 0;
}

.fabric-option:hover,
.fabric-option:focus-visible,
.fabric-option.is-active {
  background: rgba(255, 255, 255, 0.07);
}

.fabric-option.is-active {
  box-shadow: inset 2px 0 var(--paper);
}

.fabric-option > span:last-child {
  display: flex;
  flex-direction: column;
}

.fabric-option b {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.fabric-option small {
  font-size: 9px;
  opacity: 0.55;
}

.swatch {
  display: block;
  width: 58px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.swatch-midnight {
  background: #1d2930;
}

.swatch-charcoal {
  background: #4b4b48;
}

.swatch-oxblood {
  background: var(--oxblood);
}

.swatch-porcelain {
  background: var(--porcelain-light);
}

.process {
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  gap: 5%;
  align-items: start;
  margin-bottom: 68px;
}

.process-heading h2 {
  margin: 0;
  font-size: 4.4rem;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr 0.5fr;
  gap: 5%;
  align-items: center;
  min-height: 150px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
}

.process-list > li > span,
.process-list small {
  font-size: 10px;
}

.process-list small {
  justify-self: end;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.process-list p {
  max-width: 520px;
  margin: 0;
  font-size: 13px;
  opacity: 0.7;
}

.local-seo {
  background: var(--paper-deep);
}

.local-seo-heading,
.faq-heading {
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  gap: 5%;
  align-items: start;
  margin-bottom: 68px;
}

.local-seo-heading h2,
.faq-heading h2 {
  margin-bottom: 24px;
  font-size: 4.4rem;
}

.local-seo-heading > div > p,
.faq-heading > div > p {
  max-width: 720px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.72;
}

.seo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.seo-service-grid article {
  min-width: 0;
  padding: 42px 36px 48px;
  border-right: 1px solid var(--line-light);
}

.seo-service-grid article:first-child {
  padding-left: 0;
}

.seo-service-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.seo-service-grid article > span {
  font-size: 10px;
  opacity: 0.5;
}

.seo-service-grid h3 {
  margin: 48px 0 20px;
  font-size: 2.1rem;
}

.seo-service-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.72;
}

.entity-facts {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.5fr;
  gap: 0;
  margin-top: 74px;
  color: var(--paper);
  background: var(--porcelain);
}

.entity-facts > div {
  display: flex;
  min-height: 144px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.entity-facts > div:last-child {
  border-right: 0;
}

.entity-facts span {
  font-size: 9px;
  opacity: 0.58;
}

.entity-facts strong,
.entity-facts a,
.entity-facts address {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
}

.entity-facts a {
  font-size: 1.55rem;
}

.service-areas {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 8%;
  margin-top: 90px;
  padding-top: 50px;
  border-top: 1px solid var(--line-light);
}

.service-areas h3 {
  margin: 0;
  font-size: 2.6rem;
}

.service-areas > div:last-child > p {
  max-width: 720px;
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.75;
}

.service-areas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-areas li {
  min-width: 68px;
  padding: 8px 12px;
  border: 1px solid var(--line-light);
  text-align: center;
  font-size: 11px;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 24px;
  align-items: center;
  min-height: 96px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 17px;
  transition: transform 200ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 800px;
  margin: -6px 0 32px;
  padding-right: 72px;
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.72;
}

.contact-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 5%;
  align-items: end;
  padding: 70px 7.5%;
  color: var(--paper);
  background: var(--oxblood);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.contact-band h2 {
  max-width: 580px;
  margin: 0;
  font-size: 3.4rem;
}

.contact-band > a {
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
}

.contact-band > a span {
  font-size: 9px;
  opacity: 0.62;
}

.contact-band > a strong {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
}

.contact-band address {
  font-size: 12px;
  font-style: normal;
  line-height: 1.8;
  opacity: 0.78;
}

.closing {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: #0d0d0c;
}

.closing > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.closing-veil {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 12, 0.2);
}

.closing-copy {
  position: relative;
  z-index: 2;
  width: 58%;
  padding-left: 7.5%;
}

.closing-copy h2 {
  max-width: 800px;
  margin-bottom: 44px;
  font-size: 4.6rem;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 0.65fr 0.8fr;
  gap: 7%;
  padding: 68px 7.5% 58px;
}

.footer-company h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.footer-company > p {
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.8;
  opacity: 0.65;
}

.footer-phone {
  display: inline-block;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 1.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-company address {
  max-width: 520px;
  font-style: normal;
  line-height: 1.75;
  opacity: 0.65;
}

.footer-nav,
.footer-services {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-nav p,
.footer-services p,
.friend-links-wrap > p {
  margin-bottom: 12px;
  color: var(--porcelain-light);
  font-size: 9px;
  text-transform: uppercase;
}

.footer-nav a,
.footer-services a {
  opacity: 0.7;
  transition: opacity 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-services a:hover,
.footer-services a:focus-visible {
  opacity: 1;
}

.footer-services button {
  margin-top: 10px;
  padding: 8px 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 11px;
}

.friend-links-wrap {
  padding: 28px 7.5% 34px;
  border-top: 1px solid var(--line-dark);
}

.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
}

.friend-links a {
  color: rgba(241, 239, 233, 0.52);
  font-size: 10px;
  transition: color 180ms ease;
}

.friend-links a:hover,
.friend-links a:focus-visible {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 7.5%;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
  margin: 0;
  opacity: 0.5;
}

.footer-bottom a {
  border-bottom: 1px solid currentColor;
}

.booking-dialog {
  width: min(1080px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.booking-dialog::backdrop {
  background: rgba(6, 6, 6, 0.78);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 25px;
  line-height: 1;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 600px;
}

.booking-intro {
  display: flex;
  flex-direction: column;
  padding: 62px 48px;
  color: var(--paper);
  background: var(--porcelain);
}

.booking-intro h2 {
  margin-bottom: 26px;
  font-size: 3.1rem;
}

.booking-intro > p:not(.section-index) {
  font-family: var(--serif);
  line-height: 1.8;
  opacity: 0.75;
}

.booking-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  padding: 62px 54px;
}

.booking-form[hidden] {
  display: none;
}

.botcheck {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.booking-form label:not(.consent) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form label > span:first-child {
  font-size: 11px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  border-radius: 0;
  outline: none;
  font-size: 13px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--ink);
}

.booking-form input:focus-visible,
.booking-form select:focus-visible,
.booking-form textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 10px;
}

.consent input {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.consent a {
  border-bottom: 1px solid currentColor;
}

.privacy-notice {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  max-width: 1180px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 20px 22px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.privacy-notice[hidden] {
  display: none;
}

.privacy-notice strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.privacy-notice p {
  margin: 0;
  color: rgba(241, 239, 233, 0.7);
  font-size: 11px;
}

.privacy-notice-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.privacy-notice-actions a,
.privacy-notice-actions button {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  font-size: 11px;
}

.privacy-notice-actions a {
  display: inline-flex;
  align-items: center;
}

.privacy-notice-actions .is-primary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.privacy-main {
  min-height: 100svh;
  padding: 150px 7.5% 110px;
  background: var(--paper);
}

.privacy-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 86px;
  border-bottom: 1px solid var(--line-light);
}

.privacy-hero h1 {
  margin-bottom: 30px;
  font-size: 6rem;
}

.privacy-hero > p:not(.section-index) {
  max-width: 760px;
  margin-bottom: 50px;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.9;
}

.privacy-meta {
  display: grid;
  max-width: 960px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.privacy-meta div {
  padding: 18px 20px;
  border-right: 1px solid var(--line-light);
}

.privacy-meta div:last-child {
  border-right: 0;
}

.privacy-meta dt {
  margin-bottom: 5px;
  color: var(--porcelain-light);
  font-size: 9px;
}

.privacy-meta dd {
  margin: 0;
  font-size: 12px;
}

.privacy-layout {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 9%;
  margin: 0 auto;
  padding-top: 76px;
}

.privacy-toc {
  position: sticky;
  top: 104px;
  display: flex;
  height: max-content;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.privacy-toc p {
  margin-bottom: 12px;
  color: var(--porcelain-light);
  font-size: 9px;
}

.privacy-toc a {
  padding: 4px 0;
  color: rgba(13, 13, 12, 0.62);
  font-size: 11px;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible {
  color: var(--ink);
}

.privacy-content {
  max-width: 780px;
}

.privacy-content section {
  padding: 10px 0 66px;
  scroll-margin-top: 92px;
}

.privacy-content section + section {
  padding-top: 62px;
  border-top: 1px solid var(--line-light);
}

.privacy-content h2 {
  margin-bottom: 30px;
  font-size: 2.75rem;
}

.privacy-content p,
.privacy-content li,
.processor-list dd {
  color: rgba(13, 13, 12, 0.76);
  font-size: 14px;
  line-height: 1.95;
}

.privacy-content ul {
  margin: 24px 0 28px;
  padding-left: 1.2em;
}

.privacy-content li + li {
  margin-top: 10px;
}

.processor-list {
  margin: 0 0 28px;
}

.processor-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
}

.processor-list div:last-child {
  border-bottom: 1px solid var(--line-light);
}

.processor-list dt {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.processor-list dd {
  margin: 0;
}

.text-action {
  min-height: 44px;
  margin-top: 12px;
  padding: 9px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}

.privacy-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}

.privacy-contact a {
  border-bottom: 1px solid currentColor;
}

.booking-form .button {
  align-self: flex-start;
  min-width: 180px;
}

.booking-form .button:disabled {
  cursor: wait;
  opacity: 0.55;
  transform: none;
}

.form-error {
  margin: -4px 0 0;
  color: var(--oxblood);
  font-size: 11px;
  line-height: 1.6;
}

.form-error[hidden] {
  display: none;
}

.booking-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px;
}

.booking-success[hidden] {
  display: none;
}

.booking-success > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--paper);
  background: var(--porcelain);
  border-radius: 50%;
}

.booking-success h3 {
  margin-bottom: 16px;
  font-size: 2.5rem;
}

.booking-success p {
  max-width: 420px;
  margin-bottom: 32px;
  opacity: 0.72;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-settle {
  from {
    opacity: 0.35;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes running-line {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 24px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-note {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    width: 62%;
    padding-left: 6%;
  }

  .hero h1 {
    font-size: 6.2rem;
  }

  .manifesto-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6%;
  }

  .manifesto h2,
  .closing-copy h2 {
    font-size: 3.8rem;
  }

  .collection-copy h2,
  .fabric-heading h2,
  .process-heading h2,
  .local-seo-heading h2,
  .faq-heading h2 {
    font-size: 3.6rem;
  }

  .craft-copy h2 {
    font-size: 3.4rem;
  }

  .section-pad {
    padding: 96px 6%;
  }

  .collection,
  .collection-womens {
    grid-template-columns: 1fr 1fr;
  }

  .collection-copy {
    padding-right: 9%;
    padding-left: 9%;
  }

  .collection-visual,
  .craft-image {
    min-height: 680px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 62px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
    background: rgba(13, 13, 12, 0.28);
  }

  .desktop-nav,
  .header-booking {
    display: none;
  }

  .site-header::before {
    content: "PRIVATE TAILORING";
    font-size: 9px;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
  }

  .menu-button span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 28px 42px;
    color: var(--paper);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 240ms ease, transform 240ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .mobile-menu nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--serif);
    font-size: 2rem;
  }

  .mobile-menu > button,
  .mobile-menu > a {
    align-self: flex-start;
    padding: 12px 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
  }

  .hero {
    min-height: calc(100svh - 32px);
    align-items: flex-end;
  }

  .hero-image {
    background-image: url("./assets/hero-man.jpg");
    background-image: url("./assets/hero-man-960.webp");
    background-position: 54% center;
    background-size: cover;
  }

  .privacy-page .site-header {
    background: rgba(241, 239, 233, 0.98);
  }

  .hero-veil {
    background: rgba(13, 13, 12, 0.48);
  }

  .hero-content {
    width: 100%;
    padding: 100px 22px 86px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: 4.2rem;
  }

  .hero-lead {
    margin-bottom: 32px;
    font-size: 1.35rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-meta {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .section-pad {
    padding: 78px 22px;
  }

  .kicker,
  .section-index {
    margin-bottom: 22px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .manifesto-grid > *,
  .fabric-heading > *,
  .process-heading > *,
  .local-seo-heading > *,
  .faq-heading > * {
    min-width: 0;
  }

  h1,
  h2,
  h3 {
    word-break: normal;
  }

  .manifesto h2,
  .closing-copy h2 {
    font-size: 2.75rem;
  }

  .manifesto-copy dl {
    gap: 14px;
  }

  .manifesto-copy dt {
    font-size: 1.5rem;
  }

  .collection,
  .collection-womens,
  .craft {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .collection-womens .collection-copy {
    order: 2;
  }

  .womens-visual {
    order: 1;
  }

  .collection-visual,
  .craft-image {
    min-height: 0;
    aspect-ratio: 0.78;
  }

  .collection-visual img {
    object-position: center 32%;
  }

  .collection-copy h2,
  .fabric-heading h2,
  .process-heading h2,
  .craft-copy h2 {
    font-size: 2.9rem;
  }

  .collection-statement {
    font-size: 1.35rem;
  }

  .craft-image {
    aspect-ratio: 1;
  }

  .craft-copy {
    min-height: 580px;
  }

  .fabric-heading,
  .process-heading,
  .local-seo-heading,
  .faq-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 48px;
  }

  .local-seo-heading h2,
  .faq-heading h2 {
    font-size: 2.9rem;
  }

  .seo-service-grid {
    grid-template-columns: 1fr;
  }

  .seo-service-grid article,
  .seo-service-grid article:first-child,
  .seo-service-grid article:last-child {
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .seo-service-grid article:last-child {
    border-bottom: 0;
  }

  .seo-service-grid h3 {
    margin-top: 28px;
    font-size: 1.8rem;
  }

  .entity-facts {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .entity-facts > div {
    min-height: 122px;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .entity-facts > div:last-child {
    border-bottom: 0;
  }

  .service-areas {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 62px;
  }

  .service-areas h3 {
    font-size: 2.2rem;
  }

  .faq-list summary {
    min-height: 86px;
    font-size: 1.1rem;
  }

  .faq-list details > p {
    padding-right: 0;
  }

  .contact-band {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 58px 22px;
  }

  .contact-band h2 {
    font-size: 2.65rem;
  }

  .contact-band > a strong {
    font-size: 1.8rem;
  }

  .fabric-console {
    grid-template-columns: 1fr;
  }

  .fabric-preview {
    min-height: 460px;
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .fabric-sample {
    right: 4%;
    width: 58%;
  }

  .fabric-readout h3 {
    font-size: 2.2rem;
  }

  .fabric-options {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .fabric-option {
    grid-template-columns: 42px 1fr;
    padding: 18px 14px;
    border-right: 1px solid var(--line-dark);
  }

  .fabric-option:nth-child(3) {
    border-bottom: 0;
  }

  .swatch {
    width: 40px;
  }

  .process-list li {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    min-height: 170px;
  }

  .process-list small {
    grid-column: 2;
    justify-self: start;
  }

  .closing {
    min-height: 720px;
    align-items: flex-end;
  }

  .closing > img {
    inset: 0;
    width: 100%;
  }

  .closing-veil {
    background: rgba(13, 13, 12, 0.52);
  }

  .closing-copy {
    width: 100%;
    padding: 0 22px 72px;
  }

  .site-footer {
    font-size: 11px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 52px 22px 42px;
  }

  .footer-company h2 {
    font-size: 1.8rem;
  }

  .friend-links-wrap {
    padding: 26px 22px 30px;
  }

  .friend-links {
    gap: 8px 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
  }

  .booking-dialog {
    width: 100%;
    max-height: 100svh;
    margin: 0;
  }

  .booking-layout {
    display: block;
    min-height: 100svh;
  }

  .booking-intro {
    min-height: 300px;
    padding: 48px 24px 36px;
  }

  .booking-intro h2 {
    max-width: 260px;
    font-size: 2.5rem;
  }

  .booking-hours {
    margin-top: 32px;
  }

  .booking-form {
    gap: 18px;
    padding: 34px 24px 48px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .booking-success {
    min-height: 430px;
    padding: 48px 24px;
  }

  .privacy-main {
    padding: 112px 22px 72px;
  }

  .privacy-hero {
    padding-bottom: 56px;
  }

  .privacy-hero h1 {
    font-size: 3.6rem;
  }

  .privacy-hero > p:not(.section-index) {
    font-size: 1rem;
  }

  .privacy-meta {
    grid-template-columns: 1fr;
  }

  .privacy-meta div {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .privacy-meta div:last-child {
    border-bottom: 0;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 52px;
  }

  .privacy-toc {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line-light);
  }

  .privacy-toc p {
    grid-column: 1 / -1;
  }

  .privacy-content h2 {
    font-size: 2.25rem;
  }

  .processor-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .privacy-notice {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

  .privacy-notice-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-notice-actions a {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
