:root {
  --brown-950: #0e1f19;
  --brown-900: #153a2c;
  --brown-800: #1e4a38;
  --brown-700: #2b6049;
  --gold: #c9a24c;
  --gold-light: #ead9a0;
  --gold-dim: #8fa087;
  --maroon: #8a5a2b;
  --ivory: #f4efe2;
  --ivory-dim: #c7d2c4;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--brown-950);
  color: var(--ivory);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ---------- background texture ---------- */
.brocade {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 20% 20%, var(--gold) 0, transparent 40%), radial-gradient(circle at 80% 60%, var(--gold) 0, transparent 45%),
    radial-gradient(circle at 50% 90%, var(--maroon) 0, transparent 40%);
  mix-blend-mode: screen;
}

/* ---------- nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 6vw;
  transition: all 0.5s ease;
  background: linear-gradient(to bottom, rgba(23, 15, 9, 0.85), transparent);
}
header.scrolled {
  padding: 14px 6vw;
  background: rgba(14, 31, 25, 0.64);
  border-bottom: 1px solid rgba(201, 162, 76, 0.25);
  /*! backdrop-filter: blur(6px); */
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.9rem;
  color: var(--ivory);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

nav.links {
  display: flex;
  gap: 2.4vw;
}
nav.links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ivory-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
nav.links a:hover {
  color: var(--gold-light);
}
nav.links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6vw;
  background: radial-gradient(ellipse at center 30%, rgba(74, 47, 27, 0.5), transparent 60%), var(--brown-950);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(img/main-bg.png) no-repeat center;
  background-size: cover;
  opacity: 0.2;
  z-index: 0;
}

.hero-frame {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(201, 162, 76, 0.35);
  pointer-events: none;
}
.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
}
.hero-frame::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.hero-bloom {
  width: 120px;
  margin-bottom: 18px;
}
.hero-bloom svg {
  width: 100%;
  height: auto;
}
.petal {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw 2.6s ease forwards;
}
.petal.p2 {
  animation-delay: 0.15s;
}
.petal.p3 {
  animation-delay: 0.3s;
}
.petal.p4 {
  animation-delay: 0.45s;
}
.petal.p5 {
  animation-delay: 0.6s;
}
.bud {
  fill: var(--gold-light);
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 1.4s;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero .eyebrow {
  opacity: 0;
  animation: riseIn 0.9s ease forwards;
  animation-delay: 0.4s;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  color: var(--ivory);
  line-height: 1;
  margin: 0.3em 0 0.25em;
  opacity: 0;
  animation: riseIn 1s ease forwards;
  animation-delay: 0.6s;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p.tagline {
  max-width: 520px;
  font-size: 1rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: riseIn 1s ease forwards;
  animation-delay: 0.9s;
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-dim);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.8s;
}
.scroll-cue .line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ---------- hero leaves + badges ---------- */
.leaf-corner {
  position: absolute;
  width: 220px;
  height: 220px;
  opacity: 0.5;
  pointer-events: none;
  color: var(--brown-700);
  z-index: 0;
}
.leaf-corner.tl {
  top: -30px;
  left: -30px;
  transform: scaleX(-1) rotate(10deg);
}
.leaf-corner.br {
  bottom: -30px;
  right: -30px;
  transform: rotate(6deg);
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  margin-top: 44px;
  max-width: 1100px;
  width: 100%;
}
.badge-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.value-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 104px;
  opacity: 0;
  animation: riseIn 0.8s ease forwards;
}
.value-badge .circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201, 162, 76, 0.14), rgba(201, 162, 76, 0.03));
  border: 1px solid rgba(201, 162, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-badge .circle svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.value-badge span {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory-dim);
  text-align: center;
  line-height: 1.4;
}

.gift-box {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  opacity: 0;
  animation: riseIn 1s ease forwards;
  animation-delay: 0.3s;
}
.gift-box svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.gift-card {
  position: absolute;
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
  width: 78%;
  background: var(--brown-950);
  border: 1px solid rgba(201, 162, 76, 0.4);
  padding: 14px 16px;
  text-align: left;
  box-shadow: var(--shadow);
  opacity: 0;
  animation: riseIn 0.9s ease forwards;
  animation-delay: 1.1s;
}
.gift-card .eyebrow {
  font-size: 0.55rem;
  display: block;
  margin-bottom: 4px;
}
.gift-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ivory);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-stage {
    flex-direction: column;
  }
  .badge-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .gift-box {
    order: -1;
    width: 220px;
  }
  .leaf-corner {
    width: 140px;
    height: 140px;
  }
}

/* ---------- arched occasion badges ---------- */
.occasion-arches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.arch {
  width: 150px;
  text-align: center;
  background: linear-gradient(180deg, rgba(201, 162, 76, 0.07), transparent);
  border: 1px solid rgba(201, 162, 76, 0.3);
  border-bottom: none;
  border-radius: 80px 80px 8px 8px;
  padding: 30px 12px 22px;
  transition:
    background 0.4s ease,
    transform 0.4s ease;
}
.arch:hover {
  background: rgba(201, 162, 76, 0.1);
  transform: translateY(-6px);
}
.arch svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 14px;
}
.arch h3 {
  font-size: 1rem;
  color: var(--ivory);
  font-weight: 500;
}

/* ---------- closing cta band ---------- */

.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(201, 162, 76, 0.25);
}
.cta-left {
  padding: 50px 5vw;
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--brown-950);
}
.cta-left svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
  flex-shrink: 0;
}
.cta-left p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--ivory);
  line-height: 1.3;
}
.cta-left p em {
  color: var(--gold-light);
  font-style: italic;
}
.cta-right {
  padding: 50px 5vw;
  background: var(--brown-900);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.cta-right .eyebrow {
  font-size: 0.68rem;
}
.cta-right .mail {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold-light);
}
@media (max-width: 800px) {
  .cta-band {
    grid-template-columns: 1fr;
  }
}

/* ---------- section shell ---------- */
section {
  position: relative;
  z-index: 1;
  padding: min(14vw, 140px) 6vw;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--ivory);
  margin: 0.35em 0;
}
.section-head p {
  color: var(--ivory-dim);
  line-height: 1.8;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  max-width: 340px;
}
.divider .rule {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.divider .rule.rev {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}
.divider svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6vw;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid rgba(201, 162, 76, 0.3);
  padding: 18px;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 162, 76, 0.5);
}
.about-visual .fill {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(201, 162, 76, 0.18), transparent 55%), linear-gradient(160deg, var(--brown-800), var(--brown-900));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual .fill svg {
  width: 46%;
}
.about-text .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 22px;
}
.about-text p {
  color: var(--ivory-dim);
  line-height: 1.9;
  font-size: 0.98rem;
  margin-bottom: 16px;
  max-width: 520px;
}
.about-stats {
  display: flex;
  gap: 44px;
  margin-top: 34px;
}
.about-stats div strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold-light);
}
.about-stats div span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ivory-dim);
}

/* ---------- collections ---------- */
.collection-grid {
  /* display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  ! background:rgb(255, 235, 173); */
}

.collection-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.collection-grid > * {
  width: calc((100% - 36px) / 5);
}
.piece {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--brown-900);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.piece .art {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--brown-800) 0%, var(--brown-950) 70%);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.piece .art svg {
  width: 34%;
  opacity: 0.85;
  color: var(--gold-dim);
  transition:
    opacity 0.6s ease,
    color 0.6s ease;
}
.piece:hover .art {
  transform: scale(1.08);
  backdrop-filter: blur(10px);
}
.piece:hover .art svg {
  opacity: 1;
  color: var(--gold-light);
}
.piece .info {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 26px 22px;
  background: linear-gradient(to top, rgb(23, 15, 9), #0000008f);
}
.piece .info .eyebrow {
  font-size: 0.62rem;
  display: block;
  margin-bottom: 6px;
}
.piece .info h3 {
  font-size: 1.4rem;
  color: var(--ivory);
}
.piece .info p {
  font-size: 0.8rem;
  color: var(--ivory-dim);
  margin-top: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s ease,
    opacity 0.5s ease,
    margin 0.5s ease;
}
.piece:hover .info p {
  max-height: 60px;
  opacity: 1;
  margin-top: 8px;
}

.collection-cta {
  text-align: center;
  margin-top: 50px;
}

/* ---------- buttons ---------- */
.mogra-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  text-decoration: none;
  isolation: isolate;
}
.mogra-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.mogra-btn:hover {
  color: var(--brown-950);
}
.mogra-btn:hover::before {
  transform: scaleX(1);
}

/* ---------- corporate & bespoke split bg ---------- */
.band {
  position: relative;
  background-size: cover;
  border-top: 1px solid rgba(201, 162, 76, 0.15);
  border-bottom: 1px solid rgba(201, 162, 76, 0.15);
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(img/corporate-bg.png) no-repeat center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}
.corp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}
.corp-list {
  list-style: none;
  margin-top: 24px;
}
.corp-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 162, 76, 0.15);
  color: var(--ivory-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}
.corp-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}
.corp-list li strong {
  color: var(--ivory);
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
}

/* ---------- bespoke steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201, 162, 76, 0.15);
  margin-top: 20px;
}
.step {
  background: var(--brown-950);
  padding: 44px 30px;
  position: relative;
}
.step .num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.85rem;
  color: var(--ivory-dim);
  line-height: 1.7;
}

/* ---------- occasions ---------- */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(201, 162, 76, 0.15);
}
.occasion {
  background: var(--brown-950);
  padding: 44px 18px;
  text-align: center;
  transition: background 0.4s ease;
}
.occasion:hover {
  background: var(--brown-800);
}
.occasion svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  color: var(--gold);
}
.occasion h3 {
  font-size: 1.15rem;
  color: var(--ivory);
  font-weight: 500;
}

/* ---------- contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6vw;
}
.contact-info .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 20px;
}
.contact-info p {
  color: var(--ivory-dim);
  line-height: 1.85;
  font-size: 0.95rem;
  max-width: 440px;
  margin-bottom: 30px;
}
.contact-detail {
  margin-bottom: 22px;
}
.contact-detail .eyebrow {
  font-size: 0.66rem;
  margin-bottom: 6px;
}
.contact-detail div {
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field {
  position: relative;
}
.field label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ivory-dim);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 162, 76, 0.35);
  border-radius: 0;
  color: var(--ivory);
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  padding: 10px 2px;
  transition: border-color 0.3s ease;
  box-shadow: none;
}
.field select option {
  background: var(--brown-900);
  color: var(--ivory);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
form .mogra-btn {
  align-self: flex-start;
  cursor: pointer;
  font-family: inherit;
  margin-top: 8px;
}
.form-note {
  font-size: 0.75rem;
  color: var(--ivory-dim);
  opacity: 0.8;
  margin-top: -8px;
}
.confirm {
  display: none;
  padding: 16px 0;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
}
.confirm.show {
  display: block;
}

/* ---------- footer ---------- */
footer {
  padding: 60px 6vw 34px;
  border-top: 1px solid rgba(201, 162, 76, 0.15);
  text-align: center;
}
footer .logo {
  justify-content: center;
  margin-bottom: 22px;
}
header .logo {
  width: 250px;
}

footer nav.links {
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
footer .fine {
  font-size: 0.72rem;
  color: var(--ivory-dim);
  opacity: 0.6;
  letter-spacing: 0.06em;
}
.about-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 42px 0 38px;
  /*! border-top: 1px solid rgba(0, 0, 0, 0.12); */
  /*! border-left: 1px solid rgba(0, 0, 0, 0.12); */
}

.principle {
  display: flex;
  gap: 18px;
  padding: 24px 22px;
  /* border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); */
}

.principle-number {
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.5;
  padding-top: 4px;
}

.principle h3 {
  margin: 0 0 7px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.principle p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.65;
}

@media (max-width: 700px) {
  .about-principles {
    grid-template-columns: 1fr;
  }

  header .logo {
    width: 200px;
  }
  header {
    padding: 60px 50px;
  }
  .hero {
    padding: 60px 50px;
  }
}
/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .about,
  .corp,
  .contact {
    grid-template-columns: 1fr;
  }
  .about-visual {
    max-width: 320px;
    margin: 0 auto;
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .row2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  nav.links {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(78vw, 320px);
    background: var(--brown-950);
    border-left: 1px solid rgba(201, 162, 76, 0.25);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 0 40px;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    z-index: 99;
  }
  nav.links.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 6px;
  }
  .nav-toggle span {
    width: 22px;
    height: 1px;
    background: var(--gold);
    display: block;
    transition: 0.3s ease;
  }
  .collection-grid {
    grid-template-columns: 1fr;
  }
  .collection-grid > * {
    width: calc((100% - 36px) / 1);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  section {
    padding: 90px 6vw;
  }
}
