:root {
  --ink: #191f28;
  --ink-soft: #252a32;
  --paper: #f7f5f0;
  --white: #fff;
  --gold: #d3a64b;
  --gold-light: #edc96f;
  --gold-deep: #b48734;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --container: 1180px;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(16, 20, 27, .14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--gold-light);
  transform: translateY(-180%);
}

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

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

.section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-deep);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .92;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -.045em;
  line-height: 1;
}

h3 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  letter-spacing: -.035em;
  line-height: 1.05;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

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

.button--gold {
  color: #11161d;
  background: linear-gradient(115deg, var(--gold-deep), var(--gold-light));
}

.button--gold:hover {
  color: var(--ink);
  background: var(--gold-light);
}

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

.text-link {
  display: inline-flex;
  gap: .65rem;
  align-items: center;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  content: "";
}

.text-link span {
  color: var(--gold-light);
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.text-link--dark {
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--white);
  transition: background-color .3s ease, backdrop-filter .3s ease;
}

.site-header.is-scrolled {
  background: rgba(25, 31, 40, .92);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 2rem;
}

.brand {
  position: relative;
  z-index: 102;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.main-nav a {
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.header-call {
  min-height: 44px;
  margin-left: .5rem;
}

.header-call svg,
.mobile-call svg {
  width: 18px;
  margin-right: .55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  right: 7px;
  width: 30px;
  height: 2px;
  background: var(--white);
  transition: transform .25s ease, top .25s ease;
}

.nav-toggle > span:first-child {
  top: 17px;
}

.nav-toggle > span:nth-child(2) {
  top: 27px;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  content: "";
  right: -18vw;
  bottom: -32vw;
  border: 130px solid rgba(255, 255, 255, .045);
  border-radius: 50%;
}

.hero-ribbon {
  position: absolute;
  width: 74vw;
  height: 120px;
  top: 22%;
  left: -18%;
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  transform: rotate(-50deg);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 900px;
  padding-top: 132px;
  padding-bottom: 100px;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-copy .eyebrow {
  color: var(--gold-light);
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, .72);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 867 / 979;
  align-self: center;
}

.hero-logo {
  position: absolute;
  z-index: 1;
  width: min(39vw, 410px);
  top: -16px;
  right: 4%;
  border-radius: 50%;
  opacity: .35;
}

.hero-objects {
  position: absolute;
  z-index: 2;
  width: min(48vw, 580px);
  height: auto;
  aspect-ratio: 867 / 979;
  right: -2%;
  bottom: 0;
  object-fit: contain;
  filter: drop-shadow(0 35px 30px rgba(0, 0, 0, .4));
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .52) 0%, rgba(0, 0, 0, .78) 22%, #000 46%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .52) 0%, rgba(0, 0, 0, .78) 22%, #000 46%);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 38px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-line {
  position: relative;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .22);
}

.scroll-line::after {
  position: absolute;
  width: 50%;
  height: 1px;
  content: "";
  background: var(--gold-light);
  animation: lineTravel 2s infinite ease-in-out;
}

@keyframes lineTravel {
  from { transform: translateX(-110%); }
  to { transform: translateX(220%); }
}

.wanted {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #c7973b, #edca70);
}

.wanted::after {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(25, 31, 40, .14);
  border-radius: 50%;
  content: "";
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  grid-template-columns: .75fr 1fr;
  align-items: end;
  gap: 2rem 5rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.5rem;
  color: var(--ink);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  max-width: 500px;
}

.wanted-grid {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(25, 31, 40, .3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 4rem;
  list-style: none;
}

.wanted-item {
  border-bottom: 1px solid rgba(25, 31, 40, .3);
}

.wanted-item details {
  height: 100%;
}

.wanted-item summary {
  display: grid;
  min-height: 84px;
  padding: .9rem 0;
  align-items: center;
  column-gap: 1.5rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  grid-template-columns: 26px minmax(0, 1fr) 30px;
  list-style: none;
}

.wanted-item summary::-webkit-details-marker {
  display: none;
}

.wanted-item summary:hover .wanted-name {
  transform: translateX(4px);
}

.wanted-item summary:focus-visible {
  outline: 3px solid rgba(25, 31, 40, .65);
  outline-offset: -3px;
}

.wanted-name {
  transition: transform .25s ease;
}

.wanted-number {
  color: rgba(25, 31, 40, .55);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.wanted-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(25, 31, 40, .4);
  border-radius: 50%;
  transition: background-color .25s ease, transform .35s ease;
}

.wanted-toggle::before,
.wanted-toggle::after {
  position: absolute;
  width: 12px;
  height: 1px;
  content: "";
  top: 50%;
  left: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.wanted-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .25s ease;
}

.wanted-item details[open] .wanted-toggle {
  background: rgba(25, 31, 40, .1);
  transform: rotate(180deg);
}

.wanted-item details[open] .wanted-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.wanted-panel {
  display: grid;
  padding: 0 0 1.5rem;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.4rem;
  animation: wantedPanelIn .38s cubic-bezier(.2, .7, .2, 1) both;
}

.wanted-panel-copy {
  max-width: 650px;
}

.wanted-panel-copy p {
  margin: 0;
  font-size: .96rem;
  line-height: 1.65;
}

.wanted-panel-copy strong {
  font-weight: 800;
}

.wanted-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  order: -1;
  border-radius: 14px;
  background: rgba(25, 31, 40, .16);
  box-shadow: 0 14px 28px rgba(25, 31, 40, .18);
  object-fit: cover;
  opacity: 0;
  transform: scale(.985);
  transition: opacity .35s ease, transform .45s ease;
}

.wanted-panel img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

@keyframes wantedPanelIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wanted-cta {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wanted-cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
}

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

.shop-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.shop-copy {
  position: relative;
  z-index: 2;
}

.shop-address {
  margin: 2rem 0 .4rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.35;
}

.appointment {
  display: inline-flex;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(25, 31, 40, .2);
  border-radius: 16px;
  align-items: center;
  gap: 1rem;
}

.appointment span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.appointment strong {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 2rem;
}

.shop-photo {
  position: relative;
  margin: 0;
}

.shop-photo::before {
  position: absolute;
  z-index: -1;
  width: 38%;
  height: 50%;
  content: "";
  top: -28px;
  right: -28px;
  background: var(--gold);
  border-radius: 18px;
}

.shop-photo img {
  width: 100%;
  min-height: 430px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.map-card {
  display: grid;
  margin-top: clamp(5rem, 9vw, 9rem);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: 1.4fr .6fr;
}

.map-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.map-content {
  display: flex;
  padding: clamp(2rem, 5vw, 4rem);
  flex-direction: column;
  justify-content: center;
}

.map-content h3 {
  margin-bottom: 2.25rem;
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact .eyebrow {
  color: var(--gold-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 6rem;
}

.contact h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.contact-actions {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.contact-line {
  display: flex;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  flex-direction: column;
  text-decoration: none;
}

.contact-line span {
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-line strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  overflow-wrap: anywhere;
}

.contact-line[href^="mailto:"] strong {
  font-size: clamp(.88rem, 1.6vw, 1.4rem);
  letter-spacing: -.015em;
  white-space: nowrap;
}

.contact-line:hover strong {
  color: var(--gold-light);
}

.site-footer {
  padding: 2.5rem 0 6rem;
  color: rgba(255, 255, 255, .6);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.footer-inner img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.footer-inner p {
  margin: 0;
  font-size: .82rem;
}

.legal {
  text-align: right;
}

.mobile-call {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
}

[data-reveal-delay="1"] {
  transition-delay: .15s;
}

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

@media (max-width: 960px) {
  .header-call {
    display: none;
  }

  .hero {
    min-height: 840px;
  }

  .hero-grid {
    min-height: 840px;
    padding-top: 150px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    position: absolute;
    width: 48%;
    height: auto;
    aspect-ratio: 867 / 979;
    right: 0;
    bottom: 40px;
  }

  .hero-objects {
    width: 100%;
    height: auto;
    right: -12%;
  }

  .hero-logo {
    display: none;
  }

  .hero-copy {
    text-shadow: 0 3px 20px rgba(0, 0, 0, .4);
  }

  .shop-intro {
    grid-template-columns: 1fr;
  }

  .shop-copy {
    max-width: 650px;
  }

  .shop-photo img {
    min-height: 360px;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .map-content {
    order: -1;
  }

  .map-image img {
    min-height: 330px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 5.5rem 0;
  }

  h1 {
    font-size: clamp(2.85rem, 13.5vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

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

  .brand {
    width: 54px;
    height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 7rem 2rem 2rem;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .main-nav a {
    font-family: var(--serif);
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
  }

  .menu-open .nav-toggle > span:first-child {
    top: 22px;
    transform: rotate(45deg);
  }

  .menu-open .nav-toggle > span:nth-child(2) {
    top: 22px;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: 940px;
  }

  .hero::before {
    width: 680px;
    height: 680px;
    right: -430px;
    bottom: -230px;
    border-width: 95px;
  }

  .hero-ribbon {
    width: 900px;
    left: -530px;
  }

  .hero-grid {
    min-height: 940px;
    padding-top: 128px;
    padding-bottom: 320px;
    align-content: start;
  }

  .hero-copy {
    text-shadow: none;
  }

  .hero-intro {
    max-width: 34rem;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-visual {
    width: 390px;
    height: auto;
    aspect-ratio: 867 / 979;
    right: -80px;
    bottom: 15px;
  }

  .hero-objects {
    width: 390px;
    height: auto;
    right: 0;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    display: block;
    margin-bottom: 3rem;
  }

  .section-heading .eyebrow {
    margin-bottom: 1rem;
  }

  .section-heading h2 {
    margin-bottom: 1.25rem;
  }

  .wanted-grid {
    grid-template-columns: 1fr;
  }

  .wanted-item summary {
    min-height: 72px;
    font-size: 1.35rem;
  }

  .wanted-panel {
    padding: 0 0 1.35rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wanted-panel img {
    width: 100%;
  }

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

  .shop-photo::before {
    top: -14px;
    right: -12px;
  }

  .shop-photo img {
    min-height: 270px;
    border-radius: 20px;
  }

  .map-card {
    border-radius: 20px;
  }

  .map-image {
    overflow: auto;
  }

  .map-image img {
    width: auto;
    max-width: none;
    height: 290px;
  }

  .map-content {
    padding: 2rem;
  }

  .footer-inner {
    padding-bottom: 2rem;
    grid-template-columns: auto 1fr;
  }

  .legal {
    grid-column: 1 / -1;
    text-align: left;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: flex;
    min-height: 56px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: linear-gradient(115deg, var(--gold-deep), var(--gold-light));
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    font-weight: 700;
    text-decoration: none;
  }
}

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

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

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