﻿:root {
  --gold: #ad7412;
  --gold-deep: #835307;
  --gold-soft: #c99b3f;
  --ink: #2f2419;
  --muted: #675849;
  --cream: #fff8ea;
  --ivory: #fffdf8;
  --line: rgba(173, 116, 18, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 18%, rgba(201, 155, 63, 0.12), transparent 24rem),
    radial-gradient(circle at 94% 60%, rgba(173, 116, 18, 0.08), transparent 23rem),
    linear-gradient(180deg, #fffaf0 0%, #fffdf8 56%, #fff7e8 100%);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

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

.topbar {
  background: linear-gradient(90deg, var(--gold-deep), #bf8420, var(--gold-deep));
  color: #fff8e8;
  font-size: 14px;
}

.topbar__inner,
.footer__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__promise::before {
  content: "\265B";
  margin-right: 8px;
}

.topbar__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.navbar {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(173, 116, 18, 0.14);
  backdrop-filter: blur(12px);
}

.navbar__inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(3, auto) minmax(190px, 260px) repeat(4, auto);
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.brand {
  align-self: stretch;
  display: grid;
  place-items: center;
}

.brand img {
  width: 250px;
  max-height: 106px;
  object-fit: contain;
  object-position: center;
}

.nav-link {
  position: relative;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-link.active,
.nav-link:hover {
  color: var(--gold);
}

.nav-link.active::after,
.nav-link:hover::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.quote-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.quote-btn,
.primary-btn {
  color: white;
  background: linear-gradient(135deg, #c69332, var(--gold-deep));
  box-shadow: 0 12px 24px rgba(131, 83, 7, 0.2);
}

.secondary-btn {
  color: var(--gold-deep);
  border: 1px solid rgba(173, 116, 18, 0.42);
  background: rgba(255, 255, 255, 0.56);
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.98), rgba(255, 248, 234, 0.78)),
    radial-gradient(circle at 93% 12%, rgba(201, 155, 63, 0.16), transparent 28rem);
}

.product-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(173, 116, 18, 0.08), transparent 34%, rgba(173, 116, 18, 0.06)),
    radial-gradient(circle at 0 0, rgba(173, 116, 18, 0.12), transparent 18rem);
}

.product-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 34px;
  align-items: start;
}

.product-hero__content {
  padding: 10px 0 0;
}

.product-hero__content h1,
.product-hero__content h2,
.product-hero__content h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.product-hero__content h1 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(36px, 4.7vw, 66px);
  line-height: 0.95;
  text-transform: uppercase;
}

.product-hero__content h2 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.1;
}

.product-hero__content h3 {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 22px;
}

.product-hero__content p {
  margin: 0 0 14px;
  color: #4f4132;
  font-size: 16px;
  line-height: 1.75;
}

.product-hero__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 24px;
}

.product-hero__lists > div {
  border: 1px solid rgba(173, 116, 18, 0.2);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.64);
}

.product-hero__lists ul {
  margin: 0;
  padding-left: 18px;
  color: #4f4132;
  line-height: 1.72;
}

.maharaja-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: sticky;
  top: 132px;
}

.maharaja-thumb {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(173, 116, 18, 0.22);
  border-radius: 8px;
  background: #fff8ea;
  box-shadow: 0 16px 34px rgba(82, 51, 8, 0.12);
}

.maharaja-thumb > a:first-child {
  display: block;
  height: 100%;
}

.maharaja-thumb img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.maharaja-thumb:hover img {
  transform: scale(1.04);
}

.thumb-quote {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff8e8;
  background: linear-gradient(135deg, #c69332, var(--gold-deep));
  box-shadow: 0 12px 24px rgba(80, 47, 3, 0.28);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 22px 26px;
  background: rgba(24, 18, 12, 0.92);
}

.lightbox:target {
  display: flex;
}

.lightbox img {
  width: min(1180px, 100%);
  max-height: calc(100vh - 112px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff8e8;
  border: 1px solid rgba(255, 248, 232, 0.38);
  background: rgba(173, 116, 18, 0.82);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: clamp(410px, 27vw, 430px);
  display: grid;
  grid-template-columns: minmax(350px, 45%) 1fr;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff8ea 0%, rgba(255, 248, 234, 0.98) 30%, rgba(255, 248, 234, 0.48) 48%, rgba(255, 248, 234, 0.06) 72%),
    url("assets/hero-image-new.png") right top / contain no-repeat,
    linear-gradient(180deg, #fff8ea, #fff8ea);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(590px, 43vw);
  padding: 52px 0 42px max(32px, calc((100vw - 1180px) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__eyebrow,
.eyebrow,
.section-title p {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__eyebrow {
  margin-bottom: 6px;
  font-size: clamp(13px, 0.96vw, 16px);
  line-height: 1.35;
}

.hero__ornament {
  width: 190px;
  height: 14px;
  margin: 0 0 7px;
  position: relative;
}

.hero__ornament::before,
.hero__ornament::after {
  position: absolute;
  content: "";
}

.hero__ornament::before {
  top: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173, 116, 18, 0.52), transparent);
}

.hero__ornament::after {
  top: 3px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(173, 116, 18, 0.58);
  border-radius: 50%;
  background: var(--cream);
  transform: translateX(-50%) rotate(45deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

.hero__title {
  margin-bottom: 2px;
  color: var(--gold);
  font-size: clamp(48px, 4.05vw, 66px);
  line-height: 0.98;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__subtitle {
  margin-bottom: 7px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.25vw, 37px);
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__copy {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stats {
  background: linear-gradient(90deg, var(--gold-deep), #c28b25, var(--gold-deep));
  color: #fff8e8;
}

.stats__grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat {
  min-width: 0;
  padding: 20px 28px;
  display: grid;
  place-items: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  font-size: 27px;
  line-height: 1.1;
}

.stat span {
  margin-top: 4px;
  font-size: 14px;
}

.section {
  padding: 62px 0;
}

.section-title {
  margin-bottom: 34px;
  text-align: center;
}

.section-title p {
  margin-bottom: 10px;
}

.section-title h2,
.about h2,
.contact h2,
.faq h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.4vw, 48px);
  text-transform: uppercase;
}

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

.tent-card {
  overflow: hidden;
  border: 1px solid rgba(173, 116, 18, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(73, 47, 10, 0.12);
}

.tent-card img {
  width: 100%;
  aspect-ratio: 1.22 / 0.78;
  object-fit: cover;
}

.tent-card div {
  padding: 14px 12px 16px;
  color: #fff8e8;
  text-align: center;
  background: linear-gradient(135deg, #bd8521, var(--gold-deep));
}

.tent-card h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.tent-card a {
  font-size: 12px;
  font-weight: 700;
}

.center-action {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.about {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.about__grid,
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.about p,
.contact p,
.faq p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.quality-panel {
  display: grid;
  gap: 12px;
}

.quality-panel div,
.contact__box a,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(73, 47, 10, 0.08);
}

.quality-panel div {
  padding: 22px;
}

.quality-panel strong,
.contact__box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-deep);
  font-size: 18px;
}

.quality-panel span,
.contact__box span {
  color: var(--muted);
}

.contact__box {
  display: grid;
  gap: 14px;
}

.contact__box a {
  padding: 20px;
}

.faq {
  padding-top: 24px;
}

.faq__grid {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--gold-deep);
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
}

.faq ul {
  margin: 10px 0 0 22px;
  padding: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.faq li {
  margin: 3px 0;
}

.floating-actions {
  position: fixed;
  z-index: 30;
  right: 16px;
  top: 45%;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #c69332, var(--gold-deep));
  box-shadow: 0 12px 28px rgba(73, 47, 10, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-actions a:hover {
  transform: translateX(-3px);
  box-shadow: 0 16px 34px rgba(73, 47, 10, 0.32);
}

.floating-actions svg {
  width: 32px;
  height: 32px;
  fill: #fff8e8;
}

.footer {
  color: #fff8e8;
  background: var(--gold-deep);
}

.footer__content {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 34px;
  align-items: start;
}

.footer__brand {
  display: grid;
  gap: 8px;
}

.footer__brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.footer__brand span {
  color: rgba(255, 248, 232, 0.8);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__contact h2 {
  margin: 0 0 16px;
  color: #fff8e8;
  font-size: 20px;
  text-transform: uppercase;
}

.footer__contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer__contact-grid a,
.footer__contact-grid div {
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(255, 248, 232, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.footer__contact-grid strong {
  display: block;
  margin-bottom: 6px;
  color: #fff8e8;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.footer__contact-grid span {
  color: rgba(255, 248, 232, 0.86);
  font-size: 15px;
  line-height: 1.5;
}

.footer__map {
  width: fit-content;
  min-height: 42px;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 232, 0.34);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--gold-deep);
  background: #fff8e8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .navbar__inner {
    min-height: 96px;
    grid-template-columns: repeat(4, auto);
    gap: 16px 22px;
    padding: 12px 0;
  }

  .brand {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .brand img {
    width: 220px;
    max-height: 88px;
  }

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

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

  .maharaja-gallery {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar__inner,
  .footer__inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 10px 0;
  }

  .footer__content,
  .footer__contact-grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    text-align: center;
  }

  .footer__map {
    margin-inline: auto;
  }

  .topbar__links {
    justify-content: center;
    gap: 12px;
  }

  .navbar {
    position: relative;
  }

  .navbar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .brand {
    grid-column: 1 / -1;
  }

  .nav-link,
  .quote-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(173, 116, 18, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.54);
    font-size: 12px;
  }

  .nav-link.active::after,
  .nav-link:hover::after {
    display: none;
  }

  .quote-btn {
    grid-column: 1 / -1;
    color: #fff8e8;
    background: linear-gradient(135deg, #c69332, var(--gold-deep));
  }

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

  .product-hero {
    padding: 34px 0;
  }

  .product-hero__content h1 {
    font-size: 38px;
  }

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

  .maharaja-thumb,
  .maharaja-thumb img {
    min-height: 230px;
  }

  .hero__image {
    background:
      linear-gradient(180deg, rgba(255, 248, 234, 0.88), rgba(255, 248, 234, 0.68)),
      url("assets/hero-image-new.png") center top / contain no-repeat,
      linear-gradient(180deg, #fff8ea, #fff8ea);
  }

  .hero__content {
    padding: 64px 22px 124px;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero__title {
    font-size: 42px;
    white-space: normal;
  }

  .hero__subtitle {
    font-size: 36px;
    white-space: normal;
  }

  .hero__eyebrow {
    max-width: 340px;
  }

  .hero__actions {
    justify-content: center;
  }

  .stats__grid,
  .collection__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    padding: 10px 0;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .stat:first-child {
    border-top: 0;
  }

  .collection__grid {
    gap: 16px;
  }

  .floating-actions {
    display: none;
  }
}
