:root {
  --ink: #211917;
  --ink-2: #312522;
  --cream: #f4efe7;
  --paper: #fbf8f2;
  --white: #fff;
  --rose: #a92e4e;
  --rose-dark: #7c1f39;
  --aqua: #1ca9b8;
  --gold: #b89158;
  --muted: #756963;
  --line: rgba(33, 25, 23, .15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --shadow: 0 24px 70px rgba(33, 25, 23, .15)
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden
}

body.menu-open {
  overflow: hidden
}

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

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

button {
  font: inherit
}

::selection {
  background: var(--rose);
  color: var(--white)
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -100px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 4px
}

.skip-link:focus {
  top: 16px
}

.topbar {
  height: 38px;
  background: var(--ink);
  color: #efe7dc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase
}

.topbar p {
  display: flex;
  gap: 12px;
  align-items: center
}

.topbar p span:first-child {
  color: #fff
}

.topbar a {
  color: #f3d5dc
}

.topbar i {
  margin-left: 6px;
  font-size: .6rem
}

.site-header {
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  transition: .3s
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(33, 25, 23, .06)
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 1
}

.wordmark span {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -.03em
}

.wordmark small {
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--rose);
  font-size: .52rem;
  margin-top: 6px
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px
}

.desktop-nav a {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  position: relative
}

.desktop-nav a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--rose);
  transition: .25s
}

.desktop-nav a:hover:after,
.desktop-nav a:focus-visible:after {
  right: 0
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--rose)
}

.header-cta i {
  font-size: 1.15rem
}

.menu-toggle,
.mobile-nav {
  display: none
}

.hero {
  min-height: calc(100vh - 122px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 6vw;
  padding: 54px 4vw 72px;
  max-width: 1600px;
  margin: auto
}

.hero-copy {
  padding-left: max(0px, calc((100vw - 1500px)/2))
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rose);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor
}

.hero h1,
.section-heading h2,
.wholesale h2,
.story h2,
.social-heading h2,
.visit h2,
.faq h2 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.4vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .79
}

.hero h1 em,
.section-heading h2 em,
.wholesale h2 em,
.story h2 em,
.social-heading h2 em,
.visit h2 em,
.faq h2 em {
  color: var(--rose);
  font-weight: 500
}

.hero-intro {
  max-width: 570px;
  margin: 34px 0 28px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s
}

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

.button-primary:hover {
  background: var(--rose);
  transform: translateY(-2px)
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px
}

.text-link i {
  color: var(--rose)
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 22px;
  max-width: 610px
}

.hero-proof div {
  display: flex;
  flex-direction: column
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: 1.25rem
}

.hero-proof span {
  font-size: .66rem;
  color: var(--muted)
}

.hero-gallery {
  height: min(72vh, 760px);
  min-height: 540px;
  position: relative
}

.hero-main-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #dccdc2
}

.hero-main-image:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 65%, rgba(33, 25, 23, .2))
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: -18px;
  top: 7%;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 18px 40px rgba(124, 31, 57, .24);
  transform: rotate(8deg)
}

.hero-stamp span {
  text-transform: uppercase;
  font-size: .51rem;
  letter-spacing: .18em
}

.hero-stamp strong {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.1
}

.brand-ribbon {
  background: var(--rose);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-height: 56px;
  padding: 13px 4vw;
  overflow: hidden
}

.brand-ribbon p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  white-space: nowrap
}

.brand-ribbon i {
  font-size: .38rem;
  color: #eec6d0
}

.section {
  padding: 120px 4vw;
  max-width: 1600px;
  margin: auto
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 10vw;
  margin-bottom: 58px
}

.section-heading h2,
.wholesale h2,
.story h2,
.social-heading h2,
.visit h2,
.faq h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: .88
}

.section-heading>p {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.8
}

.section-heading.compact {
  grid-template-columns: 1fr auto
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--ink)
}

.collection-card:nth-child(1) {
  grid-column: span 5
}

.collection-card:nth-child(2) {
  grid-column: span 3
}

.collection-card:nth-child(3) {
  grid-column: span 4
}

.collection-card:nth-child(4) {
  grid-column: span 4;
  min-height: 450px
}

.collection-card:nth-child(5) {
  grid-column: span 8;
  min-height: 450px
}

.collection-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1)
}

.collection-card:nth-child(5) img {
  object-position: center 26%
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 13, 12, .8))
}

.collection-content {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: #fff
}

.collection-content span {
  font-size: .59rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #eedbe0
}

.collection-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.1
}

.collection-content p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .35);
  margin-top: 13px;
  padding-top: 12px;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  opacity: 0;
  transform: translateY(10px);
  transition: .3s
}

.collection-card:hover img {
  transform: scale(1.045)
}

.collection-card:hover .collection-content p {
  opacity: 1;
  transform: none
}

.service-band {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 4vw
}

.service-band article {
  display: flex;
  gap: 18px;
  padding: 0 34px;
  border-right: 1px solid var(--line)
}

.service-band article:first-child {
  padding-left: 0
}

.service-band article:last-child {
  border: 0
}

.service-band i {
  font-size: 1.45rem;
  color: var(--rose);
  margin-top: 3px
}

.service-band h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.2
}

.service-band p {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 6px
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.product-image {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 3/4.2
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s
}

.product-enquire {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(251, 248, 242, .94);
  backdrop-filter: blur(9px);
  min-height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: .67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  transform: translateY(65px);
  transition: .3s
}

.product-image:hover img {
  transform: scale(1.035)
}

.product-image:hover .product-enquire {
  transform: none
}

.new-arrival-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  background: var(--rose);
  color: #fff;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase
}

.product-brand {
  color: var(--rose);
  font-size: .59rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 16px 0 3px
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2
}

.product-detail {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 6px
}

.availability-note {
  text-align: center;
  color: var(--muted);
  font-size: .69rem;
  margin-top: 42px
}

.availability-note i {
  color: var(--rose);
  margin-right: 7px
}

.wholesale {
  max-width: 1600px;
  margin: auto;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px
}

.wholesale-image {
  position: relative;
  overflow: hidden
}

.wholesale-image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(33, 25, 23, .65))
}

.wholesale-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%
}

.wholesale-image>span {
  position: absolute;
  z-index: 2;
  bottom: 38px;
  left: 38px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
  font-style: italic
}

.wholesale-copy {
  padding: 9vw 8vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center
}

.wholesale .eyebrow {
  color: #e7a6b8
}

.wholesale h2 em {
  color: #e7a6b8
}

.wholesale-copy>p:not(.eyebrow) {
  color: #c7bdb9;
  margin: 30px 0 22px;
  line-height: 1.9
}

.wholesale ul {
  list-style: none;
  margin-bottom: 32px
}

.wholesale li {
  font-size: .77rem;
  margin: 12px 0;
  color: #e6dfdc
}

.wholesale li i {
  color: #e7a6b8;
  margin-right: 10px
}

.button-light {
  background: #fff;
  color: var(--ink)
}

.button-light:hover {
  background: #e7a6b8;
  transform: translateY(-2px)
}

.story {
  display: grid;
  grid-template-columns: 1.1fr .75fr .45fr;
  gap: 7vw;
  align-items: center
}

.story-copy .lead {
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.35;
  margin-bottom: 18px
}

.story-copy>p:not(.lead) {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 25px
}

.story-urdu {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--rose);
  writing-mode: vertical-rl;
  justify-self: center
}

.social-section {
  background: var(--cream);
  padding: 110px 4vw
}

.social-heading {
  max-width: 1500px;
  margin: 0 auto 48px;
  display: flex;
  align-items: end;
  justify-content: space-between
}

.social-grid {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px
}

.social-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5
}

.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.social-tile span {
  position: absolute;
  inset: 0;
  background: rgba(33, 25, 23, .35);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: .3s
}

.social-tile:hover img {
  transform: scale(1.04)
}

.social-tile:hover span {
  opacity: 1
}

.visit {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 750px
}

.visit-photo {
  overflow: hidden;
  background: #ddd
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%
}

.visit-card {
  background: #ead8db;
  padding: 9vw;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.visit-card>p:not(.eyebrow):not(.showcase-note) {
  color: #685957;
  margin: 26px 0
}

.visit address {
  font-style: normal;
  border-top: 1px solid rgba(33, 25, 23, .18);
  margin-bottom: 28px
}

.visit address>div {
  display: flex;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(33, 25, 23, .18);
  padding: 15px 0
}

.visit address i {
  width: 20px;
  color: var(--rose)
}

.visit address span {
  display: flex;
  flex-direction: column;
  font-size: .82rem
}

.visit address small {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #7a6568;
  font-size: .53rem
}

.visit-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.button-outline {
  border-color: var(--ink)
}

.button-outline:hover {
  background: var(--white);
  transform: translateY(-2px)
}

.showcase-note {
  font-size: .63rem;
  color: #7a6568;
  margin-top: 18px;
  max-width: 620px
}

.faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 9vw
}

.faq-list {
  border-top: 1px solid var(--line)
}

details {
  border-bottom: 1px solid var(--line)
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600
}

summary::-webkit-details-marker {
  display: none
}

summary i {
  font-size: .75rem;
  color: var(--rose);
  transition: .25s
}

details[open] summary i {
  transform: rotate(45deg)
}

details p {
  max-width: 650px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.8;
  padding: 0 38px 24px 0
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 75px 4vw 24px
}

.footer-top {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr .6fr 1fr .55fr;
  gap: 6vw
}

.footer-wordmark small {
  color: #e7a6b8
}

.footer-top>div:first-child>p {
  color: #a99e99;
  font-size: .75rem;
  max-width: 350px;
  margin-top: 20px
}

.footer-top h2 {
  font-size: .61rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #e7a6b8;
  margin-bottom: 18px
}

.footer-top>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px
}

.footer-top a,
.footer-top span {
  color: #d2c8c4;
  font-size: .73rem
}

.social-links {
  display: flex;
  gap: 8px
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  place-items: center;
  transition: .25s
}

.social-links a:hover {
  background: var(--rose);
  border-color: var(--rose)
}

.footer-bottom {
  max-width: 1500px;
  margin: 55px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  color: #8f8581;
  font-size: .61rem
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #176b4d;
  color: #fff;
  min-height: 52px;
  padding: 0 19px;
  border-radius: 99px;
  box-shadow: 0 14px 35px rgba(14, 80, 55, .28);
  font-size: .72rem;
  font-weight: 600;
  transition: .25s
}

.floating-whatsapp i {
  font-size: 1.35rem
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #0f7b53
}

.store-welcome {
  width: min(900px, calc(100vw - 32px));
  max-width: 900px;
  max-height: min(720px, calc(100vh - 32px));
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(20, 12, 10, .34);
  overflow: visible
}

.store-welcome::backdrop {
  background: rgba(20, 14, 13, .68);
  backdrop-filter: blur(5px)
}

.store-welcome[open] {
  animation: store-welcome-in .35s cubic-bezier(.2, .7, .2, 1)
}

@keyframes store-welcome-in {
  from { opacity: 0; transform: translateY(18px) scale(.98) }
  to { opacity: 1; transform: none }
}

.store-welcome-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  min-height: 560px
}

.store-welcome-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(251, 248, 242, .93);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  transition: .25s
}

.store-welcome-close:hover,
.store-welcome-close:focus-visible {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff
}

.store-welcome-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--cream)
}

.store-welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%
}

.store-welcome-image > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(33, 25, 23, .88);
  color: #fff;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase
}

.store-welcome-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px 48px
}

.store-welcome-copy h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .86
}

.store-welcome-copy h2 em {
  color: var(--rose);
  font-weight: 500
}

.store-welcome-copy > p:not(.eyebrow) {
  margin: 27px 0 20px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.75
}

.store-welcome-copy address {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .8rem;
  font-style: normal
}

.store-welcome-copy address i {
  margin-top: 4px;
  color: var(--rose)
}

.store-welcome-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 24px
}

.store-welcome-actions .button {
  padding: 0 14px;
  white-space: nowrap
}

.store-welcome-continue {
  align-self: center;
  margin-top: 18px;
  padding: 4px 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .7rem
}

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

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

/* Tablet Styles */
@media(max-width:1100px) {
  .desktop-nav {
    gap: 18px
  }

  .hero {
    grid-template-columns: .9fr 1.1fr;
    gap: 3vw
  }

  .hero h1 {
    font-size: 5.3rem
  }

  .hero-proof {
    grid-template-columns: 1fr
  }

  .hero-proof div {
    flex-direction: row;
    justify-content: space-between
  }

  .collection-card:nth-child(n) {
    grid-column: span 6;
    min-height: 500px
  }

  .collection-card:last-child {
    grid-column: span 12
  }

  .service-band article {
    padding: 0 18px
  }

  .story {
    grid-template-columns: 1fr 1fr
  }

  .story-urdu {
    display: none
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-top {
    grid-template-columns: 1.3fr .7fr 1fr
  }

  .footer-top>div:last-child {
    grid-column: 2/4
  }
}

/* Mobile Styles */
@media(max-width:820px) {
  .topbar {
    justify-content: center
  }

  .topbar a {
    display: none
  }

  .site-header {
    height: 72px;
    grid-template-columns: 1fr auto
  }

  .desktop-nav,
  .header-cta {
    display: none
  }

  .menu-toggle {
    justify-self: end;
    display: flex;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    background: var(--ink);
    transition: .25s
  }

  .menu-toggle[aria-expanded=true] span:first-child {
    transform: translateY(4px) rotate(45deg)
  }

  .menu-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-4px) rotate(-45deg)
  }

  .mobile-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    height: calc(100vh - 72px);
    background: var(--paper);
    padding: 40px 6vw;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none
  }

  .mobile-nav a {
    font-family: var(--serif);
    font-size: 2.2rem;
    border-bottom: 1px solid var(--line);
    padding: 13px 0
  }

  .mobile-nav a:last-child {
    font-family: var(--sans);
    font-size: .8rem;
    color: #fff;
    background: var(--rose);
    margin-top: 28px;
    padding: 16px;
    text-align: center
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 60px 5vw 60px
  }

  .hero-copy {
    padding: 0
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem)
  }

  .hero-intro {
    font-size: .95rem;
    margin: 24px 0 20px
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .button {
    width: 100%;
    justify-content: center
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
    padding-top: 16px
  }

  .hero-proof div {
    flex-direction: column
  }

  .hero-proof strong {
    font-size: 1.1rem
  }

  .hero-proof span {
    font-size: .6rem
  }

  .hero-gallery {
    height: 400px;
    min-height: 300px;
    margin-top: 40px
  }

  .hero-main-image {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0
  }

  .hero-stamp {
    width: 70px;
    height: 70px;
    right: 5%;
    top: 5%
  }

  .hero-stamp strong {
    font-size: 1.2rem
  }

  .hero-stamp span {
    font-size: .4rem
  }

  .brand-ribbon {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    gap: 20px;
    padding: 10px 5vw
  }

  .brand-ribbon p {
    font-size: .9rem
  }

  .section {
    padding: 60px 5vw
  }

  .section-heading,
  .section-heading.compact {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .section-heading h2 {
    font-size: clamp(2.5rem, 8vw, 3.5rem)
  }

  .section-heading>p {
    font-size: .9rem
  }

  .collection-card:nth-child(n) {
    grid-column: span 12;
    min-height: 400px
  }

  .collection-content h3 {
    font-size: clamp(1.5rem, 5vw, 2.2rem)
  }

  .service-band {
    grid-template-columns: 1fr;
    padding: 25px 5vw
  }

  .service-band article,
  .service-band article:first-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .service-band article:last-child {
    border: 0
  }

  .service-band h3 {
    font-size: 1.1rem
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .product-enquire {
    transform: none
  }

  .product-card h3 {
    font-size: 1.2rem
  }

  .wholesale {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .wholesale-image {
    height: 300px
  }

  .wholesale-image>span {
    font-size: 1.5rem;
    bottom: 20px;
    left: 20px
  }

  .wholesale-copy {
    padding: 40px 5vw
  }

  .wholesale h2 {
    font-size: clamp(2rem, 7vw, 3rem)
  }

  .story {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .story-urdu {
    display: none
  }

  .story-copy .lead {
    font-size: 1.3rem
  }

  .social-section {
    padding: 60px 5vw
  }

  .social-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
  }

  .social-heading h2 {
    font-size: clamp(2rem, 7vw, 3rem)
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px
  }

  .visit {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .visit-photo {
    height: 300px
  }

  .visit-card {
    padding: 40px 5vw
  }

  .visit h2 {
    font-size: clamp(2rem, 7vw, 3rem)
  }

  .visit-actions {
    flex-direction: column
  }

  .visit-actions .button {
    width: 100%
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .faq h2 {
    font-size: clamp(2rem, 7vw, 3rem)
  }

  .faq-list {
    border-top: none
  }

  summary {
    font-size: 1.1rem;
    padding: 16px 0
  }

  details p {
    font-size: .8rem;
    padding: 0 0 16px 0
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .footer-top>div:first-child {
    grid-column: auto
  }

  .footer-top>div:last-child {
    grid-column: auto
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px
  }

  .store-welcome {
    max-height: calc(100vh - 24px);
    overflow-y: auto
  }

  .store-welcome-shell {
    grid-template-columns: .85fr 1.15fr;
    min-height: 520px
  }

  .store-welcome-image {
    min-height: 520px
  }

  .store-welcome-copy {
    padding: 60px 32px 38px
  }

  .store-welcome-actions {
    grid-template-columns: 1fr
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    min-height: 48px;
    padding: 0 16px
  }

  .floating-whatsapp span {
    display: none
  }

  .floating-whatsapp {
    width: 48px;
    padding: 0;
    justify-content: center
  }

  .floating-whatsapp i {
    font-size: 1.3rem
  }
}

/* Small Mobile Styles */
@media(max-width:520px) {
  .topbar {
    height: 34px;
    font-size: .54rem;
    letter-spacing: .07em
  }

  .topbar p span:nth-child(n+2) {
    display: none
  }

  .store-welcome {
    width: calc(100vw - 24px)
  }

  .store-welcome-shell {
    display: block;
    min-height: 0
  }

  .store-welcome-image {
    min-height: 0;
    height: 230px
  }

  .store-welcome-copy {
    padding: 36px 22px 26px
  }

  .store-welcome-copy .eyebrow {
    margin-bottom: 14px
  }

  .store-welcome-copy h2 {
    font-size: 3rem
  }

  .store-welcome-copy > p:not(.eyebrow) {
    margin: 20px 0 16px;
    font-size: .78rem
  }

  .store-welcome-actions .button {
    width: 100%
  }

  .site-header {
    top: 0
  }

  .wordmark span {
    font-size: 1.4rem
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 50px
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3.5rem)
  }

  .hero-intro {
    font-size: .85rem
  }

  .hero-gallery {
    height: 350px;
    min-height: 280px
  }

  .hero-stamp {
    width: 60px;
    height: 60px
  }

  .hero-stamp strong {
    font-size: 1rem
  }

  .section-heading h2,
  .wholesale h2,
  .story h2,
  .social-heading h2,
  .visit h2,
  .faq h2 {
    font-size: 2.5rem
  }

  .collection-card:nth-child(n) {
    min-height: 350px
  }

  .product-grid {
    gap: 8px
  }

  .product-card h3 {
    font-size: 1rem
  }

  .product-detail {
    font-size: .65rem
  }

  .wholesale-image {
    height: 250px
  }

  .wholesale-copy {
    padding: 30px 5vw
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .visit-photo {
    height: 250px
  }

  .visit-card {
    padding: 30px 5vw
  }

  .visit address small {
    font-size: .45rem
  }

  .visit address span {
    font-size: .75rem
  }

  .faq {
    gap: 15px
  }

  .footer-bottom {
    margin-top: 30px
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px
  }

  .floating-whatsapp i {
    font-size: 1.2rem
  }
}

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

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

  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}
