:root {
  --bg: #f7f1e8;
  --surface: #fffdf9;
  --text: #2a2118;
  --muted: #75685b;
  --line: rgba(70, 48, 24, 0.12);
  --accent-dark: #8e6329;
  --shadow: 0 18px 40px rgba(65, 38, 7, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(180, 130, 60, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf7f1 0%, #f4ecdf 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

.welcome-marquee {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden;
  background: linear-gradient(90deg, #8e6329, #c9964d, #8e6329);
  color: #fff7ea;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.welcome-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.welcome-track span {
  display: inline-block;
  white-space: nowrap;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 241, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

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

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
  background: #080808;
  box-shadow: var(--shadow);
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small,
.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.company-strip {
  padding: 10px 0 0;
}

.company-strip-name {
  margin: 0;
  text-align: center;
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.header-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.header-button,
.primary-button {
  background: linear-gradient(135deg, #c9964d, var(--accent-dark));
  color: #fff;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.hero-section,
.collections-section,
.catalogue-section,
.about-section,
.contact-section {
  padding: 72px 0;
}

.hero-grid,
.about-grid,
.contact-box {
  display: grid;
  gap: 28px;
}

.hero-grid,
.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.about-grid h2,
.contact-box h2 {
  margin: 10px 0 16px;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
}

.hero-text-block {
  text-align: center;
}

.hero-subheading {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-tagline {
  margin: 10px 0 0;
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text,
.section-heading.with-copy p,
.about-copy p,
.contact-box p,
.product-card p,
.collection-card p,
.hero-panel p {
  color: var(--muted);
  line-height: 1.75;
}

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

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-brand-row {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(220px, 300px);
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hero-logo {
  width: min(100%, 250px);
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(65, 38, 7, 0.16));
}

.hero-product-image {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow);
  background: #111;
  animation: product-spin 8s linear infinite;
  transform-style: preserve-3d;
}

.hero-product-image-aligned {
  max-width: 220px;
  justify-self: center;
  margin-top: 0;
}

@keyframes product-spin {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }

  50% {
    transform: perspective(1000px) rotateY(180deg);
  }

  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}

.hero-copy-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.collection-card,
.product-card,
.contact-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.product-meta span {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.collection-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.about-grid h2,
.contact-box h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.section-heading.with-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading.with-copy p {
  max-width: 440px;
  margin: 0;
}

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

.collection-card,
.product-card {
  padding: 24px;
}

.collection-card h3,
.product-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

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

.product-thumb {
  aspect-ratio: 1 / 0.85;
  border-radius: 20px;
  margin-bottom: 18px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(216, 188, 134, 0.55), rgba(255, 255, 255, 0.88)),
    linear-gradient(180deg, #f9f2e6, #ead9bf);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}

.product-specs span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  background: #fff;
}

.product-link {
  font-weight: 700;
  color: var(--accent-dark);
}

.about-copy {
  display: grid;
  gap: 10px;
}

.contact-box {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 32px;
}

.contact-details p {
  margin: 0 0 12px;
}

.contact-details strong {
  color: var(--accent-dark);
}

.contact-map-wrap {
  display: grid;
  gap: 16px;
}

.contact-map {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.32);
}

@media (max-width: 1040px) {
  .hero-grid,
  .about-grid,
  .contact-box,
  .section-heading.with-copy,
  .collection-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.with-copy {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .header-row,
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 12px;
  }

  .hero-section,
  .collections-section,
  .catalogue-section,
  .about-section,
  .contact-section {
    padding: 52px 0;
  }

  .hero-brand-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-logo,
  .hero-product-image-aligned {
    justify-self: center;
    margin-top: 0;
  }

  .hero-product-image-left {
    width: min(100%, 260px);
  }

  .welcome-track span {
    padding: 10px 18px;
    font-size: 0.82rem;
  }
}

/* Homepage rearrangement overrides */
.hero-layout {
  display: flex;
  justify-content: center;
}

.hero-copy-minimal {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 12px 0 6px;
  gap: 24px;
}

.hero-brand-row {
  gap: 28px;
}

.hero-text-block {
  max-width: 760px;
  text-align: center;
}

.hero-company-name {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.08em;
}

.hero-actions {
  justify-content: center;
  margin-top: 0;
}

@media (max-width: 1040px) {
  .hero-layout {
    display: block;
  }

  .hero-copy-minimal {
    width: 100%;
  }
}
