﻿: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: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.42), rgba(8, 9, 12, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  width: 132px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
}

.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.9);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.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: 9px 16px !important;
  color: #fff;
  background: linear-gradient(135deg, rgba(72, 144, 216, 0.92), rgba(159, 31, 99, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.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;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.4), rgba(8, 9, 12, 0.04) 26%, rgba(8, 9, 12, 0.56) 100%),
    linear-gradient(90deg, rgba(8, 9, 12, 0.8), rgba(8, 9, 12, 0.38) 46%, rgba(8, 9, 12, 0.08));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.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 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.gallery button {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  cursor: pointer;
}

.gallery img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(25, 22, 18, 0.16);
}

.gallery button:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.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:nth-child(2) {
  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 {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 48px 18px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  background: #111214;
}

.site-footer img {
  width: 120px;
  filter: brightness(1.12);
}

.site-footer p,
.site-footer span {
  max-width: 520px;
  margin: 0;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.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: linear-gradient(180deg, rgba(8, 9, 12, 0.56), rgba(8, 9, 12, 0));
  }

  .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: block;
    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;
}

.site-footer {
  padding: 54px 18px 46px;
}

.site-footer img {
  width: 104px;
}

@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: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 6vw, 72px);
  background: var(--line);
  border: 1px solid var(--line);
}

.intro-stats span {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .intro-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* 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);
}

.intro-stats {
  background: rgba(225, 214, 198, 0.85);
  border-color: rgba(225, 214, 198, 0.85);
}

.intro-stats span {
  background: rgba(255, 255, 255, 0.54);
}
/* 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-header {
  background: linear-gradient(180deg, rgba(16, 26, 43, 0.68), rgba(16, 26, 43, 0.18) 58%, transparent);
  border-bottom-color: rgba(201, 168, 106, 0.16);
}

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

.nav-cta,
.btn-primary,
.contact-links a:nth-child(2) {
  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);
}

.intro-stats {
  background: rgba(201, 168, 106, 0.28);
  border-color: rgba(201, 168, 106, 0.28);
}

.intro-stats span {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.62);
}

.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);
}

.intro-stats {
  background: rgba(16, 26, 43, 0.08);
  border-color: rgba(201, 168, 106, 0.44);
}

.intro-stats span {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(201, 168, 106, 0.28);
}
/* 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;
  }
}
