:root {
  --brown-black: #160f0b;
  --deep-brown: #261911;
  --brown: #4a3326;
  --warm-brown: #6c4e3b;
  --sand: #d8c2a7;
  --pale: #f4eadc;
  --ivory: #fff8ef;
  --turquoise: #2c8f8a;
  --line: rgba(255, 248, 239, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--brown-black);
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  padding: 22px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(22, 15, 11, 0.68), rgba(22, 15, 11, 0.06));
  backdrop-filter: blur(8px);
}

.logo {
  text-decoration: none;
  letter-spacing: 0.18em;
  font-size: 17px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.nav a {
  text-decoration: none;
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
}

.nav-shop {
  padding: 9px 15px;
  border: 1px solid rgba(255, 248, 239, 0.45);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(22, 15, 11, 0.28), rgba(22, 15, 11, 0.50)),
    url("../images/hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: brightness(1.12) contrast(1.03);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 0 6vw;
  transform: translateX(-3%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sand);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 96px);
  letter-spacing: 0.12em;
  font-weight: 500;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: clamp(18px, 2.5vw, 28px);
  color: rgba(255, 248, 239, 0.94);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.button {
  display: inline-block;
  padding: 14px 25px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.primary {
  background: var(--ivory);
  color: var(--brown-black);
}

.secondary {
  border: 1px solid var(--brown);
  color: var(--brown-black);
  background: transparent;
}

.primary-light {
  background: var(--ivory);
  color: var(--brown-black);
}

.secure {
  margin-top: 18px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: rgba(255, 248, 239, 0.78);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.section {
  padding: 92px 7vw 54px;
  text-align: center;
}

.section.intro {
  background: var(--pale);
  color: var(--brown-black);
}

.section.dark {
  background: var(--brown-black);
  color: var(--ivory);
}

.section h2 {
  max-width: 880px;
  margin: 0 auto 20px;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.section p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  color: rgba(38, 25, 17, 0.74);
}

.section.dark p {
  color: rgba(255, 248, 239, 0.72);
}

.gallery-section {
  padding: 22px 5vw 96px;
  background: var(--pale);
  color: var(--brown-black);
}

.gallery-section.dark-bg {
  background: var(--brown-black);
  color: var(--ivory);
}

.gallery {
  display: grid;
  gap: 22px;
  margin-bottom: 46px;
}

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

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

.gallery article {
  position: relative;
}

.gallery img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.94) contrast(1.02);
  box-shadow: 0 18px 46px rgba(22, 15, 11, 0.18);
}

.dark-bg .gallery img {
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}

.gallery h3 {
  margin: 14px auto 0;
  max-width: 92%;
  min-height: 48px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  opacity: 0.88;
}

.center {
  text-align: center;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  padding: 110px 7vw;
  background:
    linear-gradient(rgba(22, 15, 11, 0.72), rgba(22, 15, 11, 0.86)),
    url("../images/hero.png");
  background-size: cover;
  background-position: center;
}

.about-section h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 400;
}

.about-section p {
  font-size: 20px;
  color: rgba(255, 248, 239, 0.78);
}


.promise-section {
  padding: 92px 7vw;
  background: var(--deep-brown);
  color: var(--ivory);
}

.promise-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 54px;
  border: 1px solid rgba(216, 194, 167, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.075), rgba(44, 143, 138, 0.08));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.promise-card h2 {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 400;
}

.promise-card p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 auto;
  font-size: 20px;
  color: rgba(255, 248, 239, 0.78);
}

.care-section {
  padding: 96px 7vw 108px;
  background: var(--pale);
  color: var(--brown-black);
}

.care-heading {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}

.care-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.06;
  font-weight: 400;
}

.care-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  color: rgba(38, 25, 17, 0.72);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(74, 51, 38, 0.22);
  border: 1px solid rgba(74, 51, 38, 0.18);
}

.care-card {
  padding: 38px 34px;
  background: var(--ivory);
}

.care-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 400;
}

.care-card p {
  margin-bottom: 0;
  color: rgba(38, 25, 17, 0.72);
  font-size: 16px;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-card {
  padding: 46px 5vw;
  background: var(--brown-black);
  text-align: center;
}

.trust-card h3 {
  font-size: 24px;
  font-weight: 400;
}

.trust-card p {
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.68);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer {
  padding: 78px 6vw 48px;
  text-align: center;
  background: #0f0a07;
}

.footer h2 {
  letter-spacing: 0.18em;
  font-size: 26px;
  font-weight: 500;
}

.footer p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255, 248, 239, 0.72);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin: 28px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-links a {
  color: var(--ivory);
}

.disclaimer {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: rgba(255, 248, 239, 0.48) !important;
}

@media (max-width: 1100px) {
  .gallery.five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .nav {
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 92vh;
  }

  h1 {
    letter-spacing: 0.08em;
  }

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

  .gallery h3 {
    min-height: auto;
    margin-bottom: 18px;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding: 82px 6vw;
  }

  .trust-section {
    grid-template-columns: 1fr;
  }
}


/* Mobile optimization for PRANARACRAFTS.com */
@media (max-width: 760px) {
  .site-header {
    position: absolute;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    gap: 10px;
    background: linear-gradient(to bottom, rgba(22, 15, 11, 0.76), rgba(22, 15, 11, 0.08));
  }

  .logo {
    font-size: 14px;
    letter-spacing: 0.14em;
  }

  .nav {
    gap: 0;
  }

  .nav a:not(.nav-shop) {
    display: none;
  }

  .nav-shop {
    display: inline-block;
    padding: 8px 13px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: 92vh;
    align-items: center;
  }

  .hero-bg {
    background-position: 55% center;
    filter: brightness(1.10) contrast(1.03);
  }

  .hero-content {
    max-width: 100%;
    padding: 0 22px;
    transform: translate(0, 20px);
  }

  .hero .eyebrow {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: 10px;
    letter-spacing: 0.16em;
    line-height: 1.6;
    white-space: normal;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.6vw, 38px);
    letter-spacing: 0.045em;
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: normal;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 17px;
    line-height: 1.42;
    margin-bottom: 26px;
  }

  .button {
    padding: 13px 23px;
    font-size: 12px;
  }

  .secure {
    font-size: 11px;
  }

  .section {
    padding: 64px 24px 34px;
  }

  .section h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
  }

  .section p {
    font-size: 17px;
    line-height: 1.55;
  }

  .gallery-section {
    padding: 18px 22px 70px;
  }

  .gallery.five,
  .gallery.four {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery img {
    aspect-ratio: 4 / 5;
  }

  .gallery h3 {
    min-height: auto;
    max-width: 100%;
    margin: 12px auto 0;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.35;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 82px 26px;
    background-position: 58% center;
  }

  .about-section h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .about-section p {
    font-size: 18px;
    line-height: 1.55;
  }

  .trust-section {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 42px 28px;
  }

  .footer {
    padding: 68px 26px 42px;
  }

  .footer h2 {
    font-size: 22px;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 32px;
    letter-spacing: 0.035em;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .logo {
    font-size: 13px;
  }

  .nav-shop {
    padding: 7px 11px;
    font-size: 11px;
  }
}


/* Product detail synchronization with Etsy listings */
.gallery article {
  display: flex;
  flex-direction: column;
}

.product-image-link {
  display: block;
  text-decoration: none;
}

.product-material {
  max-width: 92%;
  margin: 8px auto 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.78;
}

.product-desc {
  max-width: 92%;
  margin: 8px auto 0;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.82;
}

.product-link {
  display: inline-block;
  margin: 12px auto 0;
  color: var(--turquoise);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.product-link:hover {
  text-decoration: underline;
}

.dark-bg .product-link {
  color: var(--sand);
}

.dark-bg .product-material,
.dark-bg .product-desc {
  color: rgba(255, 248, 239, 0.72);
}

@media (max-width: 760px) {
  .product-material,
  .product-desc {
    max-width: 100%;
    font-size: 13px;
  }

  .product-desc {
    font-size: 14px;
  }

  .product-link {
    margin-top: 10px;
    font-size: 12px;
  }
}

/* Mobile hero optimization:
   Page 1 = handcrafting scene.
   Page 2 = Tibetan model portrait.
   Desktop remains unchanged. */
.mobile-model-hero {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    gap: 10px;
    background: linear-gradient(to bottom, rgba(22, 15, 11, 0.76), rgba(22, 15, 11, 0.08));
  }

  .logo {
    font-size: 14px;
    letter-spacing: 0.14em;
  }

  .nav {
    gap: 0;
  }

  .nav a:not(.nav-shop) {
    display: none;
  }

  .nav-shop {
    display: inline-block;
    padding: 8px 13px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: 92vh;
    align-items: center;
  }

  .hero-bg {
    background-position: 34% center;
    filter: brightness(1.10) contrast(1.03);
  }

  .hero-content {
    max-width: 100%;
    padding: 0 22px;
    transform: translate(0, 20px);
  }

  .hero .eyebrow {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: 10px;
    letter-spacing: 0.16em;
    line-height: 1.6;
    white-space: normal;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.6vw, 38px);
    letter-spacing: 0.045em;
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: normal;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 17px;
    line-height: 1.42;
    margin-bottom: 26px;
  }

  .button {
    padding: 13px 23px;
    font-size: 12px;
  }

  .secure {
    font-size: 11px;
  }

  .mobile-model-hero {
    position: relative;
    display: grid;
    place-items: end center;
    min-height: 92vh;
    padding: 0 24px 72px;
    text-align: center;
    color: var(--ivory);
    overflow: hidden;
    background:
      linear-gradient(
        to bottom,
        rgba(22, 15, 11, 0.10) 0%,
        rgba(22, 15, 11, 0.30) 45%,
        rgba(22, 15, 11, 0.82) 100%
      ),
      url("../images/hero.png");
    background-size: cover;
    background-position: 88% center;
  }

  .mobile-model-content {
    position: relative;
    z-index: 2;
    max-width: 340px;
  }

  .mobile-model-content h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
    font-weight: 400;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
  }

  .mobile-model-content p {
    margin: 0 auto 24px;
    font-size: 16px;
    line-height: 1.48;
    color: rgba(255, 248, 239, 0.88);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
  }

  .section {
    padding: 64px 24px 34px;
  }

  .section h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
  }

  .section p {
    font-size: 17px;
    line-height: 1.55;
  }

  .gallery-section {
    padding: 18px 22px 70px;
  }

  .gallery.five,
  .gallery.four {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery img {
    aspect-ratio: 4 / 5;
  }

  .gallery h3 {
    min-height: auto;
    max-width: 100%;
    margin: 12px auto 0;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.35;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 82px 26px;
    background-position: 58% center;
  }

  .about-section h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .about-section p {
    font-size: 18px;
    line-height: 1.55;
  }

  .trust-section {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 42px 28px;
  }

  .footer {
    padding: 68px 26px 42px;
  }

  .footer h2 {
    font-size: 22px;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 32px;
    letter-spacing: 0.035em;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .logo {
    font-size: 13px;
  }

  .nav-shop {
    padding: 7px 11px;
    font-size: 11px;
  }

  .mobile-model-hero {
    background-position: 90% center;
  }
}

/* Refined mobile model page: show the Tibetan model's face, turquoise ring, and wrist bracelet */
@media (max-width: 760px) {
  .mobile-model-hero {
    min-height: 96vh;
    padding: 0 24px 44px;
    place-items: end center;
    background:
      linear-gradient(
        to bottom,
        rgba(22, 15, 11, 0.06) 0%,
        rgba(22, 15, 11, 0.18) 42%,
        rgba(22, 15, 11, 0.82) 100%
      ),
      url("../images/hero.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: 76% center;
    background-color: var(--brown-black);
  }

  .mobile-model-content {
    max-width: 330px;
    transform: translateY(4px);
  }

  .mobile-model-content .eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .mobile-model-content h2 {
    font-size: clamp(26px, 7.6vw, 32px);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .mobile-model-content p {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 18px;
  }
}

@media (max-width: 390px) {
  .mobile-model-hero {
    background-position: 76% center;
    padding-bottom: 42px;
  }
}

/* PRANARACRAFTS logo - visible header/footer version */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  letter-spacing: 0.18em;
  font-size: 17px;
  font-weight: 700;
}

.logo-mark {
  display: inline-block;
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(44, 224, 210, 0.28);
}

.logo-text {
  display: inline-block;
}

.footer-logo-mark {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 0 32px rgba(44, 224, 210, 0.26);
}

@media (max-width: 760px) {
  .logo {
    gap: 8px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .footer-logo-mark {
    width: 78px;
    height: 78px;
  }
}

/* Anchor offset fix: prevent fixed header from covering section titles */
#featured,
#bracelets,
#collectors,
#symbols,
#about,
#care {
  scroll-margin-top: 150px;
}

@media (max-width: 760px) {
  #featured,
  #bracelets,
  #collectors,
  #symbols,
  #about,
  #care {
    scroll-margin-top: 90px;
  }
}


@media (max-width: 760px) {
  .promise-section {
    padding: 70px 22px;
  }

  .promise-card {
    padding: 36px 24px;
  }

  .promise-card h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .promise-card p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.55;
  }

  .care-section {
    padding: 72px 22px 78px;
  }

  .care-heading {
    margin-bottom: 34px;
  }

  .care-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
  }

  .care-heading p:not(.eyebrow) {
    font-size: 17px;
  }

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

  .care-card {
    padding: 34px 26px;
  }
}
