:root {
  --ink: #1e1d1b;
  --muted: #686158;
  --paper: #fbf7ef;
  --porcelain: #fffdf8;
  --cobalt: #075fca;
  --deep-cobalt: #07356f;
  --rose: #a94c58;
  --sage: #7b8d74;
  --brass: #b58b48;
  --line: rgba(30, 29, 27, 0.14);
  --shadow: 0 24px 70px rgba(18, 25, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(181, 139, 72, 0.16), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 58%, #f3eadc 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@keyframes gd-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gd-soft-scale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(181, 139, 72, 0.34);
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 25, 38, 0.1);
}

.nav-links {
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a,
.nav-button {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-button:hover,
.nav-button:focus-visible {
  color: var(--cobalt);
}

.nav-item {
  position: relative;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-item.is-open .chevron {
  transform: rotate(225deg) translateY(-1px);
}

.collection-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 280px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 44px rgba(18, 25, 38, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.collection-menu a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 9px;
  border-radius: 6px;
  color: var(--ink);
  line-height: 1.2;
}

.collection-menu img {
  width: 46px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--paper);
}

.collection-menu span {
  min-width: 0;
}

.collection-menu a:hover,
.collection-menu a:focus-visible {
  background: rgba(7, 95, 202, 0.08);
  color: var(--deep-cobalt);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(24px, 5vw, 70px) clamp(18px, 4vw, 56px) clamp(28px, 5vw, 58px);
}

.hero-media {
  align-self: stretch;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: gd-soft-scale 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy {
  max-width: 680px;
  padding-bottom: min(7vh, 64px);
}

.hero-copy > * {
  animation: gd-fade-up 660ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 120ms;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 220ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 320ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

h1 {
  margin-bottom: 20px;
  color: var(--deep-cobalt);
  font-size: clamp(4rem, 9vw, 8.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.hero-copy p:last-child,
.intro-band > p,
.product-copy > p,
.story > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.8;
}

.intro-band,
.story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.intro-band {
  background: rgba(255, 253, 248, 0.68);
}

.product-jump {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
}

.product-jump-copy {
  max-width: 720px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.jump-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.jump-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
}

.jump-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.jump-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: block;
  padding: 10px 11px;
  border-radius: 7px;
  color: var(--porcelain);
  background: rgba(7, 53, 111, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.jump-card:hover,
.jump-card:focus-visible {
  border-color: rgba(7, 95, 202, 0.42);
  outline: none;
  transform: translateY(-2px);
  transition: transform 160ms ease, border-color 160ms ease;
}

.jump-card:hover img,
.jump-card:focus-visible img,
.hero-media:hover img {
  transform: scale(1.035);
}

.featured-product,
.single-product {
  scroll-margin-top: 90px;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(7, 95, 202, 0.1), rgba(181, 139, 72, 0.12));
  border-block: 1px solid var(--line);
}

.product-copy {
  max-width: 620px;
}

.material-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
}

.material-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.material-list dt {
  margin-bottom: 7px;
  color: var(--deep-cobalt);
  font-weight: 800;
}

.material-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  padding: 12px 16px;
  border: 1px solid rgba(7, 95, 202, 0.24);
  border-radius: 999px;
  color: var(--deep-cobalt);
  background: rgba(255, 253, 248, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.back-link:hover,
.back-link:focus-visible {
  border-color: var(--cobalt);
  outline: none;
}

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

.gallery-main {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: opacity 220ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-main.is-switching img {
  opacity: 0.55;
  transform: scale(1.025);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.thumb {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.thumb:hover,
.thumb:focus-visible,
.thumb.is-active {
  border-color: var(--cobalt);
  outline: none;
}

.thumb:hover img,
.thumb:focus-visible img {
  transform: scale(1.06);
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.single-product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 56px);
  background: var(--porcelain);
}

.single-product p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.8;
}

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

.collection-grid article {
  min-height: 340px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 253, 248, 0.92);
}

.collection-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.story {
  align-items: start;
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(7, 22, 45, 0.88) 0%, rgba(7, 22, 45, 0.7) 42%, rgba(7, 22, 45, 0.28) 100%),
    url("assets/maker/gauri-vishnoi.jpg") center right / cover no-repeat;
  color: var(--porcelain);
}

.story .section-kicker {
  color: #f0c16f;
}

.story > p {
  color: rgba(255, 253, 248, 0.82);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(32px, 5vw, 54px) clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--porcelain);
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  max-width: 560px;
  gap: 16px;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border: 1px solid rgba(181, 139, 72, 0.34);
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 800;
}

.footer-brand p {
  margin: 0;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 800;
}

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

@media (max-width: 980px) {
  .hero,
  .featured-product,
  .single-product,
  .intro-band,
  .story {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    aspect-ratio: 4 / 5;
  }

  .hero-copy {
    padding-bottom: 0;
  }

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

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

@media (max-width: 660px) {
  .site-header {
    position: relative;
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 16px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.86rem;
  }

  .nav-item {
    position: static;
  }

  .collection-menu {
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    min-width: 0;
    max-height: min(70vh, 420px);
    overflow: auto;
  }

  .hero,
  .featured-product,
  .single-product,
  .product-jump,
  .intro-band,
  .story {
    padding-inline: 16px;
  }

  .jump-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .jump-card img {
    aspect-ratio: 16 / 11;
  }

  .jump-card span {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.95rem;
  }

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

  .collection-grid article {
    min-height: 260px;
  }

  .gallery-thumbs {
    gap: 7px;
  }

  .site-footer {
    flex-direction: column;
  }

  .story {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(7, 22, 45, 0.9) 0%, rgba(7, 22, 45, 0.74) 52%, rgba(7, 22, 45, 0.38) 100%),
      url("assets/maker/gauri-vishnoi.jpg") center bottom / cover no-repeat;
  }

}

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

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