:root {
  --ink: #1c1914;
  --ink-soft: #5f584e;
  --paper: #fbf8f1;
  --paper-deep: #f1eadc;
  --gold: #b98b2f;
  --gold-bright: #e2bd62;
  --gold-pale: #f4dfaa;
  --dark: #171510;
  --white: #fffdf8;
  --border: rgba(28, 25, 20, 0.14);
  --shadow: 0 18px 55px rgba(41, 31, 12, 0.12);
  --radius: 1.25rem;
  --container: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--dark);
  border-radius: 0.5rem;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.narrow {
  max-width: 52rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 241, 0.94);
  border-color: var(--border);
  box-shadow: 0 8px 25px rgba(28, 25, 20, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--container));
  min-height: 5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 2.45rem;
  height: 2.45rem;
  display: inline-block;
}

.brand-mark span {
  position: absolute;
  width: 1.55rem;
  height: 1.55rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.brand-mark span:first-child {
  top: 0.1rem;
  left: 0.1rem;
}

.brand-mark span:last-child {
  right: 0.1rem;
  bottom: 0.1rem;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

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

.menu-button {
  display: none;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-icon {
  width: 1.5rem;
  display: grid;
  gap: 0.25rem;
}

.menu-icon span {
  height: 1.5px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: 44rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 9rem 0 5rem;
  background:
    radial-gradient(circle at 82% 30%, rgba(226, 189, 98, 0.19), transparent 28rem),
    linear-gradient(150deg, #fffdf8 0%, #f3ecde 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(28, 25, 20, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(28, 25, 20, 0.08) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(to right, transparent 0%, black 65%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  margin-bottom: 2rem;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  max-width: 19ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

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

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

.button-secondary {
  background: transparent;
}

.hero-art {
  position: relative;
  width: min(100%, 29rem);
  aspect-ratio: 1;
  justify-self: center;
}

.ring {
  position: absolute;
  border: clamp(0.7rem, 1.5vw, 1.1rem) solid var(--gold-bright);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 0.15rem rgba(255, 255, 255, 0.6),
    0 1.5rem 3rem rgba(87, 55, 8, 0.2);
}

.ring-large {
  inset: 12% 9% 14% 17%;
  transform: rotate(-14deg);
}

.ring-small {
  width: 48%;
  height: 48%;
  right: 1%;
  bottom: 2%;
  border-width: 0.65rem;
  transform: rotate(19deg);
}

.diamond {
  position: absolute;
  top: 1%;
  left: 40%;
  width: 7rem;
  height: 7rem;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #fff 0%, #e9e5dd 52%, #fff 100%);
  clip-path: polygon(50% 0%, 100% 35%, 78% 100%, 22% 100%, 0 35%);
  filter: drop-shadow(0 1.2rem 1.4rem rgba(50, 43, 30, 0.18));
}

.diamond span {
  position: absolute;
  background: rgba(185, 139, 47, 0.25);
}

.diamond span:nth-child(1) {
  top: 34%;
  right: 0;
  left: 0;
  height: 1px;
}

.diamond span:nth-child(2) {
  top: 15%;
  bottom: 8%;
  left: 50%;
  width: 1px;
}

.diamond span:nth-child(3) {
  top: 18%;
  left: 20%;
  width: 60%;
  height: 1px;
  transform: rotate(90deg);
}

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

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

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.intro-section {
  border-top: 1px solid var(--border);
}

.prose {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.prose p {
  margin-bottom: 1.4rem;
}

.prose .highlight {
  margin: 2.5rem 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.35;
}

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

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.person-card {
  min-height: 22rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(28, 25, 20, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.person-card p {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.initials {
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 8rem;
}

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

.service-list li {
  min-height: 5.2rem;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  border-bottom: 1px solid var(--border);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.service-list span {
  min-width: 2.3rem;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.preowned-grid {
  position: relative;
  z-index: 1;
  min-height: 32rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.prose-light {
  color: rgba(255, 253, 248, 0.74);
}

.bangle-art {
  grid-column: 1 / -1;
  position: relative;
  height: 12rem;
  margin-top: 2rem;
}

.bangle-art span {
  position: absolute;
  bottom: -9rem;
  width: 22rem;
  height: 22rem;
  border: 0.8rem solid var(--gold-bright);
  border-radius: 50%;
  opacity: 0.8;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 0 2.5rem rgba(226,189,98,0.18);
}

.bangle-art span:nth-child(1) { left: 4%; }
.bangle-art span:nth-child(2) { left: 26%; bottom: -10rem; }
.bangle-art span:nth-child(3) { right: 25%; bottom: -8rem; }
.bangle-art span:nth-child(4) { right: 3%; bottom: -11rem; }

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-card {
  border-top: 1px solid var(--border);
}

.contact-row {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row address {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: normal;
  line-height: 1.35;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.site-footer {
  padding: 1.5rem 0;
  color: rgba(255, 253, 248, 0.66);
  background: var(--dark);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner a {
  color: var(--white);
  text-underline-offset: 0.25em;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (max-width: 800px) {
  .header-inner {
    min-height: 4.5rem;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 4.5rem 0 auto;
    max-height: calc(100vh - 4.5rem);
    padding: 1.25rem 1rem 2rem;
    display: grid;
    align-content: start;
    gap: 0;
    overflow-y: auto;
    background: rgba(251, 248, 241, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 35px rgba(28, 25, 20, 0.12);
    transform: translateY(-125%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-button[aria-expanded="true"] .menu-icon span:nth-child(1) {
    transform: translateY(0.35rem) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] .menu-icon span:nth-child(3) {
    transform: translateY(-0.35rem) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-grid,
  .split-layout,
  .preowned-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-art {
    width: min(80vw, 24rem);
    margin-top: -1rem;
  }

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

  .person-card {
    min-height: 19rem;
  }

  .sticky-heading {
    position: static;
  }

  .preowned-grid {
    gap: 1rem;
  }

  .bangle-art {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .container,
  .header-inner {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

  .menu-button-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

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

  .button {
    width: 100%;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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