:root {
  --ink: #211c18;
  --muted: #6f675e;
  --line: #e8ddd0;
  --paper: #fffdf9;
  --soft: #f7f1ea;
  --ivory: #fff8ed;
  --gold: #b58a39;
  --rose: #9f4d4f;
  --jade: #2f7468;
  --shadow: 0 24px 80px rgba(58, 43, 25, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(181, 138, 57, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: 80px 80px;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.56);
  border-bottom: 1px solid rgba(232, 221, 208, 0.7);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(255, 253, 249, 0.74);
  box-shadow: 0 12px 40px rgba(54, 44, 35, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(181, 138, 57, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.menu-open .menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-button span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

main {
  scroll-snap-type: y proximity;
}

.panel {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 104px clamp(18px, 4vw, 56px) 48px;
  overflow: clip;
  scroll-snap-align: start;
}

.panel-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.hero {
  padding: 0;
  min-height: 100svh;
  color: #231d17;
}

.hero-picture,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.86) 31%, rgba(255, 253, 249, 0.16) 64%, rgba(255, 253, 249, 0) 100%),
    linear-gradient(0deg, rgba(255, 253, 249, 0.35), rgba(255, 253, 249, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px clamp(18px, 6vw, 78px) 84px;
}

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

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

h1,
h2 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.2rem, 13vw, 11rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 560px;
  color: #4f463d;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(70, 48, 22, 0.12);
}

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

.button.ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 54px;
  border: 1px solid rgba(33, 28, 24, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  animation: scrollDot 1.5s ease-in-out infinite;
}

.split,
.visit-layout {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.split {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.section-copy p {
  max-width: 610px;
  font-size: 1.05rem;
}

.heritage {
  background:
    radial-gradient(circle at 18% 78%, rgba(47, 116, 104, 0.12), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--soft));
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article,
.collection-card,
.contact-form,
.map-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.timeline article {
  padding: clamp(18px, 3vw, 30px);
}

.timeline span,
.card-icon {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

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

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.collection-card {
  min-height: 270px;
  padding: clamp(20px, 3vw, 30px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.collection-card:hover {
  border-color: rgba(181, 138, 57, 0.58);
  transform: translateY(-6px);
  box-shadow: 0 28px 90px rgba(75, 52, 29, 0.16);
}

.jewellery {
  background:
    linear-gradient(120deg, rgba(159, 77, 79, 0.08), transparent 42%),
    var(--ivory);
}

.jewel-display {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ed;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.jewel-display picture {
  display: block;
}

.jewel-display img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.jewel-display:hover img {
  transform: scale(1.025);
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #433a32;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.visit {
  background: linear-gradient(180deg, #fffdf9, #f7f1ea);
}

.visit-layout {
  grid-template-columns: 0.85fr 1fr;
  grid-template-areas:
    "copy form"
    "map map";
}

.contact-copy {
  grid-area: copy;
}

.contact-copy h2 {
  font-size: clamp(2.1rem, 5vw, 4.8rem);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-details a,
.contact-details span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 750;
}

.contact-form {
  grid-area: form;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 32px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4c433b;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(181, 138, 57, 0.16);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--jade);
  font-weight: 800;
}

.map-frame {
  grid-area: map;
  height: min(38vh, 360px);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(-8px);
    opacity: 0.45;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 249, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

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

  .site-nav a {
    padding: 14px 10px;
  }

  .panel {
    min-height: auto;
    padding-block: 100px 58px;
    scroll-snap-align: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.92) 0%, rgba(255, 253, 249, 0.72) 42%, rgba(255, 253, 249, 0.08) 100%),
      linear-gradient(90deg, rgba(255, 253, 249, 0.58), rgba(255, 253, 249, 0));
  }

  .hero-content {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: end;
    padding: 96px 18px clamp(84px, 12vh, 128px);
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(3.8rem, 17vw, 5.7rem);
  }

  .hero-copy {
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .split,
  .split.reverse,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .visit-layout {
    grid-template-areas:
      "copy"
      "form"
      "map";
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand small {
    display: none;
  }

  .contact-details {
    display: grid;
  }

  .contact-details a,
  .contact-details span {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .button {
    min-height: 46px;
  }

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

  .collection-card {
    min-height: 210px;
  }

  .map-frame {
    height: 320px;
  }
}
