:root {
  --ink: #151515;
  --soft-ink: #2a2826;
  --muted: #6f6a64;
  --paper: #f7f2ea;
  --warm: #fbf8f2;
  --line: #ded4c4;
  --sapphire: #4890d8;
  --sapphire-deep: #1f5f99;
  --magenta: #d83084;
  --magenta-deep: #9f1f63;
  --champagne: #c9a86a;
  --shadow: 0 24px 70px rgba(25, 22, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(72, 144, 216, 0.05), transparent 380px),
    var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  /* Increased padding for height */
  background: linear-gradient(135deg, #0f172a, #162b46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  top: 0;
  min-height: 80px;
  height: 80px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(13, 20, 33, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  width: 110px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  transition: all 0.4s ease;
}

.site-header.is-scrolled .brand {
  width: 44px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: none;
  transition: color 0.4s ease;
}

.site-header.is-scrolled .site-nav {
  color: rgba(255, 255, 255, 0.95);
}

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
}

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

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--sapphire), var(--magenta));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-cta {
  padding: 10px 22px !important;
  color: #fff;
  background: linear-gradient(135deg, var(--sapphire), var(--magenta));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(216, 48, 132, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(216, 48, 132, 0.4);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  justify-self: end;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 76px;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.5) 0%, rgba(8, 9, 12, 0.1) 30%, rgba(8, 9, 12, 0.6) 100%),
    linear-gradient(90deg, rgba(8, 9, 12, 0.85) 0%, rgba(8, 9, 12, 0.5) 46%, rgba(8, 9, 12, 0.1) 100%);
  content: "";
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  opacity: 0;
  transform: translateX(3%) scale(1.02);
  transition: opacity 1.2s ease-in-out, transform 5s ease-out;
  will-change: opacity, transform;
}

.hero-media img.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--magenta-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5dce9;
}

.hero h1,
.intro h2,
.section-heading h2,
.collection-feature h2,
.quality h2,
.contact h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 7rem);
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--sapphire-deep), var(--magenta-deep));
  box-shadow: 0 18px 44px rgba(12, 20, 38, 0.3);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(76px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.intro {
  background: var(--warm);
}

.intro-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.collection-feature h2,
.quality h2,
.contact h2 {
  color: var(--ink);
  font-size: clamp(2.35rem, 4.8vw, 4.85rem);
}

.intro-copy p,
.section-heading p,
.collection-feature p,
.quality p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-copy a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--sapphire-deep);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.collection-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 0.75fr) minmax(180px, 0.45fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  padding: clamp(76px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(72, 144, 216, 0.1), transparent 32%),
    #f0e7dc;
}

.feature-image {
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-large img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
}

.feature-small {
  margin-bottom: clamp(18px, 4vw, 54px);
}

.feature-small img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.feature-text {
  padding: 12px 0 clamp(16px, 4vw, 52px);
}

.feature-text span {
  display: block;
  margin-bottom: 16px;
  color: var(--magenta-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-text p {
  margin-top: 22px;
}

.products {
  background: var(--warm);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-card {
  display: grid;
  min-height: 100%;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(25, 22, 18, 0.14);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.product-card div {
  padding: 24px;
}

.product-card span,
.quality-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-card h3,
.quality-list h3 {
  margin: 0 0 9px;
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.product-card p,
.quality-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.quality {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(76px, 9vw, 128px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(72, 144, 216, 0.28), transparent 38%),
    linear-gradient(145deg, #111214, #1b2430 58%, #2a1322);
}

.quality h2,
.quality .section-kicker,
.quality p {
  color: #fff;
}

.quality .section-kicker {
  color: #e9c3d8;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.quality-list article {
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.06);
}

.quality-list h3 {
  color: #fff;
}

.quality-list p {
  color: rgba(255, 255, 255, 0.72);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 46px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 26, 43, 0.08);
  transition: transform 400ms cubic-bezier(0.2, 0, 0, 1), box-shadow 400ms ease, z-index 0s;
  z-index: 1;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0, 0, 1), filter 600ms ease;
}

/* Beautiful hover effects */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 26, 43, 0.5) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(16, 26, 43, 0.22);
  z-index: 10;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.05);
}

/* Creative Bento Box Spans for 10 items */
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(3) {
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
}

.gallery-item:nth-child(7) {
  grid-row: span 2;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(3) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(7) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(8) {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
  }

  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  /* Create a new pattern for mobile */
  .gallery-item:nth-child(3n) {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  min-height: 650px;
  background: var(--warm);
}

.contact-panel {
  align-self: center;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 6vw, 86px);
}

.contact-panel p {
  margin-top: 18px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.contact-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.contact-links a.whatsapp-link {
  color: #fff;
  background: linear-gradient(135deg, var(--sapphire-deep), var(--magenta-deep));
  border-color: transparent;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

address {
  color: var(--muted);
  font-style: normal;
}

.site-footer {
  padding: 80px 5vw 40px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto 60px;
}

.footer-brand img {
  width: 140px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 380px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin: 0 0 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 200ms ease;
  width: fit-content;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 16px 0 0;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-brand img {
    width: 120px;
  }

  .site-footer {
    padding: 60px 24px 40px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13, 10, 8, 0.84);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(980px, 100%);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-small {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    background: rgba(14, 20, 32, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .brand {
    justify-self: start;
    width: 110px;
  }

  .nav-left,
  .nav-right {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    text-shadow: none;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-right {
    top: calc(100% + 190px);
  }

  .nav-left.is-open,
  .nav-right.is-open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    padding: 14px;
  }

  .nav-cta {
    width: auto !important;
    margin: 8px 14px 10px;
  }

  .nav-toggle {
    display: grid;
    background: rgba(255, 255, 255, 0.86);
  }

  .intro-grid,
  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .quality-list {
    grid-template-columns: 1fr;
  }

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

  .contact-image {
    max-height: 460px;
    overflow: hidden;
  }
}

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

  .brand {
    width: 96px;
  }

  .hero {
    min-height: 100vh;
    padding: 108px 18px 46px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(8, 9, 12, 0.48), rgba(8, 9, 12, 0.06) 28%, rgba(8, 9, 12, 0.76)),
      linear-gradient(0deg, rgba(8, 9, 12, 0.78), rgba(8, 9, 12, 0.22));
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .product-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    aspect-ratio: 1 / 0.78;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.section-heading::after,
.intro-grid::after {
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--sapphire), var(--magenta));
  content: "";
  transform-origin: left;
}

[data-reveal].is-visible .section-heading::after,
[data-reveal].is-visible .intro-grid::after {
  animation: lineSweep 760ms 220ms ease both;
}

@media (prefers-reduced-motion: reduce) {

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Motion layer */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softScale {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.055);
  }
}

@keyframes lineSweep {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.site-header {
  animation: fadeUp 700ms ease both;
}

.brand {
  animation: softScale 850ms 120ms ease both;
  transition: transform 220ms ease, filter 220ms ease;
}

.brand:hover {
  transform: translateY(-2px) scale(1.04);
}

.hero-media img {
  animation: slowZoom 18s ease-in-out alternate infinite;
}

.hero-content>* {
  opacity: 0;
  animation: fadeUp 820ms ease both;
}

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

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

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

.hero-content>*:nth-child(4) {
  animation-delay: 520ms;
}

.btn,
.product-card,
.feature-image,
.gallery button,
.contact-links a {
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.btn:hover,
.contact-links a:hover {
  transform: translateY(-2px);
}

.product-card:hover,
.feature-image:hover,
.gallery button:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(25, 22, 18, 0.16);
}

.product-card img,
.feature-image img,
.contact-image img {
  transition: transform 420ms ease, filter 420ms ease;
}

.product-card:hover img,
.feature-image:hover img,
.contact-image:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}

@media (prefers-reduced-motion: reduce) {

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

  [data-reveal],
  .hero-content>* {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Final visual refinement layer */
.site-header {
  padding: 18px clamp(24px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(6, 7, 9, 0.58), rgba(6, 7, 9, 0.16) 58%, transparent);
}

.site-nav {
  font-size: 0.82rem;
  gap: clamp(20px, 2.8vw, 40px);
}

.brand {
  width: 148px;
}

.hero {
  min-height: 94vh;
  padding: 138px clamp(24px, 5vw, 76px) 68px;
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgba(6, 7, 9, 0.56), rgba(6, 7, 9, 0.08) 30%, rgba(6, 7, 9, 0.64) 100%),
    linear-gradient(90deg, rgba(6, 7, 9, 0.82), rgba(6, 7, 9, 0.46) 42%, rgba(6, 7, 9, 0.12));
}

.hero-content {
  width: min(680px, 100%);
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(3.35rem, 6.2vw, 6.45rem);
  line-height: 0.92;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  font-size: 1.08rem;
}

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

.btn {
  min-height: 46px;
  padding: 11px 22px;
}

.section {
  padding: clamp(64px, 7.4vw, 104px) clamp(24px, 5vw, 72px);
}

.intro-grid,
.section-heading {
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.74fr);
  gap: clamp(42px, 8vw, 120px);
}

.intro h2,
.section-heading h2,
.collection-feature h2,
.quality h2,
.contact h2 {
  font-size: clamp(2.55rem, 4.5vw, 4.45rem);
  line-height: 0.94;
}

.intro-copy p,
.section-heading p,
.collection-feature p,
.quality p,
.contact p {
  font-size: 0.98rem;
  line-height: 1.7;
}

.collection-feature {
  grid-template-columns: minmax(280px, 0.78fr) minmax(340px, 0.82fr) minmax(190px, 0.42fr);
  align-items: center;
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.feature-large img {
  aspect-ratio: 0.9 / 1;
}

.feature-small {
  margin-bottom: 0;
}

.feature-small img {
  aspect-ratio: 0.86 / 1;
}

.product-grid {
  gap: 12px;
  background: transparent;
  border: 0;
}

.product-card {
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(25, 22, 18, 0.08);
}

.product-card img {
  aspect-ratio: 1 / 0.92;
}

.product-card div {
  padding: 22px 20px 24px;
}

.quality {
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  padding-top: clamp(66px, 7vw, 96px);
  padding-bottom: clamp(66px, 7vw, 96px);
}

.quality h2 {
  max-width: 600px;
}

.quality-list article {
  padding: clamp(28px, 3.2vw, 42px);
}

.gallery {
  gap: 14px;
}

.gallery img {
  aspect-ratio: 0.92 / 1;
}

.contact {
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
  min-height: 600px;
}

.contact-panel {
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
}

.contact-image img {
  object-position: center;
}



@media (max-width: 1080px) {
  .brand {
    width: 124px;
  }

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

@media (max-width: 900px) {
  .brand {
    width: 108px;
  }

  .hero-content {
    width: min(620px, 100%);
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: 88px;
  }

  .hero {
    min-height: 92vh;
    padding: 104px 18px 42px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .intro-grid,
  .section-heading {
    gap: 24px;
  }

  .contact {
    min-height: auto;
  }
}

.intro-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(42px, 6vw, 72px);
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.intro-stats span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--soft-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-stats span::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.9em;
  opacity: 0.8;
}

/* Premium background palette pass */
:root {
  --paper: #f8f3eb;
  --warm: #fbf8f2;
  --pearl-bg: #eef5f8;
  --champagne-bg: #efe4d4;
  --ink-bg: #111923;
  --line: #e1d6c6;
}

body {
  background:
    linear-gradient(180deg, rgba(238, 245, 248, 0.58), rgba(248, 243, 235, 0) 360px),
    var(--paper);
}

.intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    var(--warm);
}

.collection-feature {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(238, 245, 248, 0.22)),
    var(--champagne-bg);
}

.products {
  background:
    linear-gradient(180deg, rgba(238, 245, 248, 0.55), rgba(251, 248, 242, 0.92) 34%, rgba(251, 248, 242, 1)),
    var(--warm);
}

.product-card {
  background: rgba(255, 255, 255, 0.88);
}

.quality {
  background:
    linear-gradient(135deg, rgba(72, 144, 216, 0.18), transparent 38%),
    linear-gradient(145deg, var(--ink-bg), #151a21 56%, #21141d);
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(238, 245, 248, 0.68)),
    var(--pearl-bg);
}

.contact {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(238, 245, 248, 0.5)),
    var(--warm);
}

.contact-links a {
  background: rgba(255, 255, 255, 0.88);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(72, 144, 216, 0.12), rgba(216, 48, 132, 0.08)),
    var(--ink-bg);
}


/* Blue and gold premium palette */
:root {
  --ink: #111724;
  --soft-ink: #20283a;
  --muted: #69707c;
  --paper: #f8f3eb;
  --warm: #fbf8f2;
  --pearl-bg: #edf5f8;
  --champagne-bg: #efe4d1;
  --navy: #101a2b;
  --navy-soft: #17263d;
  --royal-blue: #1f5f99;
  --logo-blue: #4890d8;
  --gold: #c9a86a;
  --deep-gold: #9a7435;
  --line: rgba(201, 168, 106, 0.28);
}

body {
  background:
    linear-gradient(180deg, rgba(72, 144, 216, 0.1), rgba(248, 243, 235, 0) 380px),
    var(--paper);
}



.site-nav a::after {
  background: linear-gradient(90deg, var(--gold), var(--logo-blue));
}

.nav-cta,
.btn-primary,
.contact-links a.whatsapp-link {
  color: #fff;
  background: linear-gradient(135deg, var(--royal-blue), var(--navy-soft) 58%, var(--deep-gold));
  border-color: rgba(201, 168, 106, 0.34);
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgba(16, 26, 43, 0.58), rgba(16, 26, 43, 0.08) 30%, rgba(16, 26, 43, 0.66) 100%),
    linear-gradient(90deg, rgba(16, 26, 43, 0.84), rgba(16, 26, 43, 0.46) 42%, rgba(16, 26, 43, 0.12));
}

.eyebrow,
.section-kicker,
.feature-text span {
  color: var(--deep-gold);
}

.hero .eyebrow,
.quality .section-kicker {
  color: #f1d796;
}

.intro {
  background:
    linear-gradient(135deg, rgba(237, 245, 248, 0.48), rgba(255, 255, 255, 0.1)),
    var(--warm);
}

.collection-feature {
  background:
    linear-gradient(135deg, rgba(31, 95, 153, 0.08), rgba(201, 168, 106, 0.14)),
    var(--champagne-bg);
}

.products {
  background:
    linear-gradient(180deg, rgba(237, 245, 248, 0.82), rgba(251, 248, 242, 0.96) 42%, rgba(251, 248, 242, 1)),
    var(--warm);
}

.product-card {
  border-color: rgba(201, 168, 106, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.product-card span,
.quality-list span {
  color: var(--gold);
}

.quality {
  background:
    radial-gradient(circle at 12% 12%, rgba(72, 144, 216, 0.18), transparent 30%),
    linear-gradient(145deg, var(--navy), var(--navy-soft) 58%, #201a16);
}

.quality-list {
  border-color: rgba(201, 168, 106, 0.2);
  background: rgba(201, 168, 106, 0.18);
}

.quality-list article {
  background: rgba(255, 255, 255, 0.055);
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(237, 245, 248, 0.78)),
    var(--pearl-bg);
}

.contact {
  background:
    linear-gradient(135deg, rgba(237, 245, 248, 0.56), rgba(251, 248, 242, 0.78)),
    var(--warm);
}

.contact-links a {
  border-color: rgba(201, 168, 106, 0.3);
}

.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(72, 144, 216, 0.16), transparent 34%),
    linear-gradient(145deg, var(--navy), #0c111c 62%, #1b1610);
}


.section-heading::after,
.intro-grid::after {
  background: linear-gradient(90deg, var(--gold), var(--logo-blue));
}

.lightbox button {
  border-color: rgba(201, 168, 106, 0.38);
}

/* About section blue-gold background */
.intro {
  background:
    radial-gradient(circle at 10% 8%, rgba(201, 168, 106, 0.34), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(72, 144, 216, 0.26), transparent 34%),
    linear-gradient(135deg, #f8f3eb 0%, #edf5f8 48%, #f1e3c8 100%);
}

.intro .section-kicker {
  color: var(--deep-gold);
}

.intro h2 {
  color: var(--navy);
}

.intro-copy p {
  color: #46566c;
}

.intro-copy a {
  color: var(--royal-blue);
  border-bottom-color: var(--gold);
}


/* Section-wide blue-gold background language */
.collection-feature {
  background:
    radial-gradient(circle at 12% 14%, rgba(72, 144, 216, 0.22), transparent 28%),
    radial-gradient(circle at 86% 70%, rgba(201, 168, 106, 0.34), transparent 32%),
    linear-gradient(135deg, #edf5f8 0%, #f8f3eb 46%, #efe1c6 100%);
}

.products {
  background:
    radial-gradient(circle at 86% 10%, rgba(72, 144, 216, 0.18), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(201, 168, 106, 0.22), transparent 34%),
    linear-gradient(180deg, #f5f9fa 0%, #fbf8f2 52%, #f3eadb 100%);
}

.gallery-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 168, 106, 0.2), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(72, 144, 216, 0.2), transparent 30%),
    linear-gradient(135deg, #edf5f8 0%, #f8f3eb 58%, #f0e4cf 100%);
}

.contact {
  background:
    radial-gradient(circle at 16% 16%, rgba(72, 144, 216, 0.18), transparent 30%),
    radial-gradient(circle at 72% 82%, rgba(201, 168, 106, 0.24), transparent 36%),
    linear-gradient(135deg, #fbf8f2 0%, #edf5f8 48%, #f1e4ce 100%);
}

.quality {
  background:
    radial-gradient(circle at 12% 16%, rgba(72, 144, 216, 0.28), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(201, 168, 106, 0.26), transparent 34%),
    linear-gradient(145deg, #101a2b 0%, #152742 58%, #211a10 100%);
}

.product-card,
.contact-links a {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.feature-image,
.gallery button {
  box-shadow: 0 24px 70px rgba(16, 26, 43, 0.14);
}

.contact-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(72, 144, 216, 0.22), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(201, 168, 106, 0.18), transparent 30%),
    linear-gradient(145deg, #101a2b 0%, #0d1421 62%, #1e170f 100%);
}

/* Compact contact section */
.contact {
  min-height: auto;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.contact-panel {
  align-self: center;
  padding-top: clamp(46px, 5.4vw, 72px);
  padding-bottom: clamp(46px, 5.4vw, 72px);
}

.contact h2 {
  max-width: 520px;
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.contact-panel p {
  max-width: 600px;
  margin-top: 14px;
}

.contact-links {
  gap: 10px;
  margin: 24px 0 22px;
}

.contact-links a {
  min-height: 44px;
  padding: 10px 16px;
}

.contact address {
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-image {
  max-height: 640px;
  overflow: hidden;
}

.contact-image img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 58%;
}

@media (max-width: 900px) {
  .contact-image {
    max-height: 420px;
  }

  .contact-image img {
    min-height: 380px;
  }
}

@media (max-width: 720px) {
  .contact-panel {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .contact-image {
    max-height: 340px;
  }

  .contact-image img {
    min-height: 300px;
  }
}

/* New arrivals and WhatsApp inquiry */
.new-arrivals {
  background:
    radial-gradient(circle at 84% 18%, rgba(72, 144, 216, 0.18), transparent 30%),
    radial-gradient(circle at 14% 88%, rgba(201, 168, 106, 0.24), transparent 34%),
    linear-gradient(135deg, #fbf8f2 0%, #edf5f8 48%, #f1e4ce 100%);
}

.arrival-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.7fr) minmax(240px, 0.7fr);
  gap: 16px;
  margin-top: 44px;
}

.arrival-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 24px 70px rgba(16, 26, 43, 0.14);
}

.arrival-large {
  min-height: 470px;
}

.arrival-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.arrival-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 26, 43, 0.78), rgba(16, 26, 43, 0.08) 58%);
  content: "";
}

.arrival-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: #fff;
}

.arrival-card span {
  display: block;
  margin-bottom: 10px;
  color: #f1d796;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arrival-card h3 {
  max-width: 520px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 3.2rem);
  line-height: 0.98;
}

.arrival-card:not(.arrival-large) h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.arrival-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, #1f5f99, #17263d 58%, #9a7435);
  border: 1px solid rgba(241, 215, 150, 0.38);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(16, 26, 43, 0.28);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(16, 26, 43, 0.34);
}

@media (max-width: 980px) {
  .arrival-grid {
    grid-template-columns: 1fr;
  }

  .arrival-card,
  .arrival-large {
    min-height: 360px;
  }
}

@media (max-width: 720px) {

  .arrival-card,
  .arrival-large {
    min-height: 300px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

/* ===== Consolidated final fixes ===== */
.site-header {
  position: fixed !important;
  top: 20px !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 50 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr) !important;
  min-height: 86px !important;
  height: 86px !important;
  align-items: center !important;
  gap: 28px !important;
  padding: 10px clamp(20px, 4vw, 54px) !important;
  overflow: visible !important;
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transition: height 220ms ease, min-height 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  top: 0 !important;
  min-height: 80px !important;
  height: 80px !important;
  background: rgb(0 0 0 / 36%) !important;
  border-bottom-color: rgb(201 106 106 / 0%) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24) !important;
  backdrop-filter: blur(16px) !important;
}

.site-header .brand {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 150px !important;
  transform: translate(-50%, -40%) !important;
  align-self: auto !important;
  justify-self: auto !important;
  z-index: 2 !important;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28)) !important;
  transition: width 220ms ease, transform 220ms ease, top 220ms ease;
}

.site-header.is-scrolled .brand {
  top: 52% !important;
  width: 72px !important;
  transform: translate(-50%, -50%) !important;
}

.site-header .nav-left,
.site-header .nav-right {
  position: static !important;
  display: flex !important;
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.94) !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36) !important;
}

.site-header .nav-left {
  grid-column: 1 !important;
  justify-self: start !important;
}

.site-header .nav-right {
  grid-column: 3 !important;
  justify-self: end !important;
}

.site-header .site-nav {
  gap: clamp(20px, 2.6vw, 38px) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
}

.hero {
  margin-top: 0 !important;
  padding-top: 132px !important;
}

.floating-call {
  position: fixed !important;
  right: 24px !important;
  bottom: 104px !important;
  /* 24px + 64px + 16px gap */
  z-index: 9999 !important;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #1f5f99, #101a2b) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50% !important;
  box-shadow: 0 16px 32px rgba(31, 95, 153, 0.35) !important;
  transition: transform 0.3s ease;
}

.floating-call:hover {
  transform: translateY(-4px);
}

.floating-call svg {
  width: 32px !important;
  height: 32px !important;
  fill: none !important;
  stroke: #fff !important;
}

.floating-whatsapp {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 9999 !important;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50% !important;
  box-shadow: 0 16px 32px rgba(18, 140, 126, 0.35) !important;
}

.floating-whatsapp svg {
  width: 36px !important;
  height: 36px !important;
  fill: #fff !important;
  stroke: none !important;
}

@media (max-width: 720px) {
  .floating-whatsapp {
    right: 18px !important;
    bottom: 18px !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  .floating-whatsapp svg {
    width: 31px !important;
    height: 31px !important;
  }

  .floating-call {
    right: 18px !important;
    bottom: 86px !important;
    /* 18 + 52 + 16 gap */
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  .floating-call svg {
    width: 24px !important;
    height: 24px !important;
  }
}

.floating-whatsapp svg path {
  fill: #fff !important;
  stroke: none !important;
}

.gallery-controls {
  display: none;
}

@media (max-width: 720px) {
  .gallery-section {
    position: relative;
    overflow: hidden;
  }

  .gallery-slider {
    position: relative;
    margin-top: 24px;
  }

  .gallery-slider .gallery {
    margin-top: 0;
  }

  .gallery {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery button {
    flex: 0 0 min(78vw, 330px);
    scroll-snap-align: start;
  }

  .gallery img {
    aspect-ratio: 0.86 / 1;
  }

  .gallery-controls {
    position: absolute;
    top: 50%;
    right: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin: 0;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .gallery-controls button {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background: linear-gradient(135deg, rgba(7, 18, 35, 0.96), rgba(12, 24, 42, 0.96) 58%, rgba(76, 55, 23, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
    pointer-events: auto;
  }
}

.gallery-controls button.is-hidden,
.lightbox-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.gallery-controls button svg,
.lightbox-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-frame {
  position: relative;
  display: inline-flex;
  max-width: min(980px, 100%);
  max-height: 84vh;
}

.lightbox-frame img {
  max-width: 100%;
  max-height: 84vh;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(7, 18, 35, 0.96), rgba(12, 24, 42, 0.96) 58%, rgba(76, 55, 23, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto !important;
    min-height: 68px !important;
    height: 68px !important;
    padding: 8px 16px !important;
  }

  .site-header.is-scrolled {
    min-height: 56px !important;
    height: 56px !important;
  }

  .site-header .brand {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    grid-column: 1 !important;
    justify-self: start !important;
    width: 96px !important;
    transform: translateY(10%) !important;
  }

  .site-header.is-scrolled .brand {
    width: 82px !important;
    transform: translateY(34%) !important;
  }

  .site-header .nav-left,
  .site-header .nav-right {
    position: absolute !important;
    right: 16px !important;
    left: 16px !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    justify-items: start !important;
    gap: 0 !important;
    padding: 10px !important;
    color: var(--ink) !important;
    text-shadow: none !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid var(--line) !important;
    border-radius: 10px !important;
    box-shadow: var(--shadow) !important;
  }

  .site-header .nav-left {
    top: 100% !important;
  }

  .site-header .nav-right {
    /* JS (positionMobileNavRight) sets the exact top dynamically at runtime;
       this is just a safe CSS fallback so it doesn't overlap nav-left */
    top: 100% !important;
  }

  .site-header .nav-left.is-open,
  .site-header .nav-right.is-open {
    display: grid !important;
  }

  .hero {
    padding-top: 112px !important;
  }

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

  .arrival-grid,
  .quality-list,
  .contact {
    grid-template-columns: 1fr !important;
  }

  .contact-image {
    order: -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px !important;
    height: 62px !important;
    padding: 8px 14px !important;
  }

  .site-header.is-scrolled {
    min-height: 52px !important;
    height: 52px !important;
  }

  .site-header .brand {
    width: 88px !important;
  }

  .site-header.is-scrolled .brand {
    width: 74px !important;
    transform: translateY(30%) !important;
  }

  .hero {
    padding-top: 104px !important;
  }

  .section,
  .collection-feature,
  .quality {
    padding-top: 54px;
    padding-bottom: 54px;
  }

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

/* Final header logo positioning: large, centered, and never clipped */
.site-header {
  height: 96px !important;
  min-height: 96px !important;
}

/* Desktop brand position is handled by the !important block at line ~1696 */
/* Mobile brand position is handled by the Final Authority Mobile Block at end of file */


@media (max-width: 980px) {
  .site-header {
    height: 78px !important;
    min-height: 78px !important;
  }

  .site-header .brand {
    top: auto !important;
    transform: translateY(12%) !important;
  }

  .site-header.is-scrolled {
    height: 56px !important;
    min-height: 56px !important;
  }

  .site-header.is-scrolled .brand {
    top: auto !important;
    transform: translateY(34%) !important;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 70px !important;
    min-height: 70px !important;
  }

  .site-header.is-scrolled {
    height: 52px !important;
    min-height: 52px !important;
  }
}

/* ===== Unified mobile drawer (replaces two-dropdown approach) ===== */
.mobile-drawer {
  display: none;
  /* hidden on desktop */
}

@media (max-width: 980px) {

  /* Hide the two separate nav groups on mobile — drawer takes over */
  .site-header .nav-left,
  .site-header .nav-right {
    display: none !important;
  }

  .nav-toggle {
    display: grid !important;
    grid-column: 2 !important;
    justify-self: end !important;
  }

  .mobile-drawer {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    z-index: 100;
    display: none;
    flex-direction: column;
    padding: 8px 0 12px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(201, 168, 106, 0.3);
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(16, 26, 43, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-drawer.is-open {
    display: flex;
  }

  .mobile-drawer a {
    padding: 13px 20px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201, 168, 106, 0.12);
    transition: background 160ms ease, color 160ms ease;
  }

  .mobile-drawer a:last-child {
    border-bottom: 0;
  }

  .mobile-drawer a:hover {
    background: rgba(237, 245, 248, 0.7);
    color: var(--navy);
  }

  .mobile-drawer .mobile-cta {
    margin: 10px 16px 2px;
    padding: 11px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--royal-blue), var(--navy-soft) 58%, var(--deep-gold));
    border: 1px solid rgba(201, 168, 106, 0.34);
    border-radius: 999px;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .mobile-drawer .mobile-cta:hover {
    background: linear-gradient(135deg, var(--royal-blue), var(--navy-soft) 58%, var(--deep-gold));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(16, 26, 43, 0.22);
  }
}

/* ============================================================
   FINAL AUTHORITY MOBILE BLOCK
   Must be last in file — fixes brand overflow + all layout
   ============================================================ */
@media (max-width: 980px) {

  /* ── Header & brand ── */
  .site-header {
    position: fixed !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    padding: 0 16px !important;
    height: 64px !important;
    min-height: 64px !important;
    overflow: visible !important;
  }

  /* Reset brand from absolute (desktop) to in-flow grid item */
  .site-header .brand {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 54px !important;
    height: 54px !important;
    max-height: 54px !important;
    overflow: hidden !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    z-index: 1 !important;
    border-radius: 50% !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.32)) !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-header .brand img {
    width: 54px !important;
    height: 54px !important;
    max-height: 54px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-header.is-scrolled .brand {
    width: 46px !important;
    height: 46px !important;
    max-height: 46px !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
  }

  .site-header.is-scrolled .brand img {
    width: 46px !important;
    height: 46px !important;
    transform: none !important;
  }

  .site-header .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: grid !important;
    place-items: center !important;
    width: 40px !important;
    height: 40px !important;
  }

  /* Ensure desktop navs stay hidden on mobile */
  .site-header .nav-left,
  .site-header .nav-right {
    display: none !important;
  }

  /* Mobile drawer positioned below header */
  .mobile-drawer {
    top: 64px !important;
  }

  .site-header.is-scrolled+* .mobile-drawer,
  .site-header.is-scrolled .mobile-drawer {
    top: 56px !important;
  }

  /* ── Hero ── */
  .hero {
    padding-top: 90px !important;
    padding-bottom: 48px !important;
    min-height: 90vh !important;
  }

  /* ── About / Intro ── */
  .intro-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* ── Section headings ── */
  .section-heading {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* ── Collection Feature ── */
  .collection-feature {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .feature-small {
    display: none !important;
  }

  /* ── Products ── */
  .product-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Quality ── */
  .quality {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .quality-list {
    grid-template-columns: 1fr !important;
  }

  /* ── New Arrivals ── */
  .arrival-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Gallery ── */
  .gallery {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding-bottom: 12px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .gallery button {
    flex: 0 0 75vw !important;
    scroll-snap-align: start !important;
  }

  .gallery img {
    aspect-ratio: 0.86 / 1 !important;
    width: 100% !important;
  }

  /* ── Contact ── */
  .contact {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .contact-image {
    order: -1 !important;
    max-height: 320px !important;
  }

  .contact-image img {
    min-height: 280px !important;
  }
}

/* ── Tighter at 720px ── */
@media (max-width: 720px) {

  .site-header {
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 14px !important;
  }


  .hero {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11.5vw, 3.6rem) !important;
    line-height: 1 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .section,
  .collection-feature,
  .quality,
  .new-arrivals,
  .contact {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .intro h2,
  .section-heading h2,
  .collection-feature h2,
  .quality h2,
  .contact h2 {
    font-size: clamp(2.1rem, 9.5vw, 3rem) !important;
  }


  .arrival-card,
  .arrival-large {
    min-height: 280px !important;
  }

  .contact-links a {
    font-size: 0.9rem !important;
  }

  .mobile-drawer {
    top: 58px !important;
  }
}