/* ==========================================================================
   Sripati Gold — Homepage
   All homepage section styles live here (hero + sections below).
   Requires base.css. Header/footer styles live in layout.css.
   ========================================================================== */

/* ================================================================== *
 *  HERO
 * ================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-brown);
  background-image:
    linear-gradient(90deg,
      rgba(15, 10, 4, 0.94) 0%,
      rgba(15, 10, 4, 0.72) 38%,
      rgba(15, 10, 4, 0.35) 62%,
      rgba(15, 10, 4, 0.55) 100%),
    url("../hero-bg.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 16rem 2rem 5rem;   /* top clears the taller navbar */
  position: relative;
}

/* Headline — Beverly Regular 105 */
.hero-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-hero);          /* 105 (base token) */
  line-height: var(--lh-tight);
  color: var(--color-cream);
  margin-bottom: 2.5rem;
  max-width: 14ch;
}

/* Stat line — 28px */
.hero-stats {
  font-family: var(--font-body);
  font-weight: 300;                    /* light for the plain copy */
  font-size: 1.75rem;                  /* 28px */
  line-height: 1.5;
  color: var(--color-cream);
  max-width: 30ch;
}
.hero-stats .em {
  color: var(--color-gold);
  font-weight: 500;                    /* 25+ years / 350+ jewellers */
}

/* Feature cards (bottom-right) */
.hero-cards {
  position: absolute;
  right: 2rem;
  bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 360px;
  max-width: 42vw;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  background: rgba(20, 14, 7, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-card__thumb {
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--gradient-gold);    /* fallback */
}

/* Card text — Gotham Light 21px */
.hero-card__text {
  font-family: var(--font-alt);
  font-weight: 300;                    /* Gotham Light */
  font-size: 1.3125rem;                /* 21px */
  line-height: 1.3;
  color: var(--color-cream);
}

/* --- Hero responsive --- */
@media (max-width: 1100px) {
  .hero-cards { width: 320px; }
  .hero-inner { padding-inline: 1.5rem; }
}
@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(15,10,4,0.85) 0%, rgba(15,10,4,0.6) 50%, rgba(15,10,4,0.9) 100%),
      url("../hero-bg.webp");
    background-position: center;
  }
  .hero-inner { padding: 9rem 1.25rem 3rem; }
  .hero-cards { position: static; width: 100%; max-width: none; margin-top: 3rem; gap: 1.25rem; }
  .hero-card { padding: 1rem; }
  .hero-card:nth-child(2) { flex-direction: row-reverse; }  /* alternate image side */
  .hero-card__thumb { width: 96px; height: 96px; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 3.25rem; }        /* larger than base mobile token */
  .hero-stats { font-size: 1.375rem; }
  .hero-card__text { font-size: 1.25rem; }
  .hero-card__thumb { width: 86px; height: 86px; }
}

/* ================================================================== *
 *  WHO WE ARE
 * ================================================================== */
.whoweare {
  background: var(--color-cream);
  padding-block: 6rem;
}

.whoweare-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;   /* wider text column so the heading fits 3 lines */
  gap: 3rem;
  align-items: center;
}

/* --- Text column --- */
.whoweare-eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 1.5rem;                   /* 24px */
  color: #8C877E;
  margin-bottom: 1.25rem;
}

.whoweare-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 4.25rem;                  /* 68px */
  line-height: 1.1;
  color: var(--color-brown);
  margin-bottom: 2.25rem;
  max-width: none;
  white-space: nowrap;                 /* keeps the 3 <br> lines from sub-wrapping */
}
.whoweare-lead, .whoweare-note { white-space: nowrap; }

.whoweare-lead {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 1.75rem;                  /* 28px */
  line-height: 1.4;
  color: #4A4033;
  margin-bottom: 1.75rem;
  max-width: none;
}
.whoweare-lead strong { font-weight: var(--fw-bold); color: var(--color-brown); }

.whoweare-note {
  font-family: var(--font-body);
  font-size: 1.75rem;                  /* 28px */
  line-height: 1.4;
  color: #8A6A34;                      /* deep gold-brown */
  margin-bottom: 2.75rem;
  max-width: none;
}
.whoweare-note em { font-style: italic; font-weight: var(--fw-bold); }

.btn-solid {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 1.125rem;
  color: var(--color-cream);
  background: #241A0F;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}
.btn-solid:hover { background: #3a2b16; }

/* --- Media column: two framed cards + connector --- */
.whoweare-media {
  position: relative;
  min-height: 640px;
}

.wcard {
  position: absolute;
  margin: 0;
  background: #FFFFFF;
  padding: 14px 14px 0;
  box-shadow: 0 18px 40px rgba(44, 29, 13, 0.14);
}
.wcard img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.wcard figcaption {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 1.75rem;                  /* 28px */
  color: #8A6A34;
  text-align: center;
  padding: 1rem 0 1.1rem;
}

.wcard--delivery { top: 0; right: 0; width: 60%; z-index: 1; }
.wcard--design   { bottom: 0; left: 0; width: 56%; z-index: 3; }  /* overlaps delivery */

.whoweare-connector {
  position: absolute;
  right: 22%;
  bottom: 16%;
  width: 130px;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}
.whoweare-connector svg { width: 100%; height: auto; display: block; overflow: visible; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .whoweare { padding-block: 4rem; }
  .whoweare-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-inline: 1.25rem; }
  .whoweare-title { font-size: 3rem; }
  .whoweare-lead, .whoweare-note, .wcard figcaption { font-size: 1.375rem; }

  .whoweare-media { min-height: 0; display: flex; flex-wrap: wrap; gap: 1rem; }
  .wcard { position: static; width: 100%; max-width: 340px; margin-inline: auto; }
  .whoweare-connector { display: none; }
  .lg-break { display: none; }   /* let text flow naturally on mobile */
  .whoweare-title, .whoweare-lead, .whoweare-note { white-space: normal; }
}

/* ================================================================== *
 *  JEWELRY BUILT FOR TODAY'S MARKET
 * ================================================================== */
.market {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  color: var(--color-cream);
  background-color: var(--color-brown);
  background-image:
    linear-gradient(180deg, rgba(10,7,3,0.15) 0%, rgba(10,7,3,0.20) 45%, rgba(10,7,3,0.60) 100%),
    url("../jewellerybuildfortoday.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.market-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0 2rem 2.5rem;
}

.market-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.market-feature__ico {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.market-feature p {
  font-family: var(--font-alt);
  font-weight: 300;                    /* Gotham Light */
  font-size: 1.3125rem;                /* 21px */
  line-height: 1.35;
  color: var(--color-cream);
  max-width: 22ch;
}

.market-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 4.5rem;                   /* 72px */
  line-height: 1.05;
  text-align: center;
  color: var(--color-cream);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .market { min-height: 620px; }
  .market-features { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .market-inner { padding: 0 1.25rem 2rem; }
  .market-title { font-size: 2.75rem; }
}
@media (max-width: 560px) {
  .market-features { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .market-feature p { font-size: 1.05rem; }
  .market-title { font-size: 2rem; }
}

/* ================================================================== *
 *  OUR MANUFACTURING STRENGTH
 * ================================================================== */
.manu {
  background-color: #F8F7F3;
  background-image: url("../our manufacturing -bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 5rem;
}

.manu-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 2rem;
}

.manu-eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 1.375rem;                 /* 22px */
  color: #8C877E;
  margin-bottom: 1rem;
}

.manu-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 3.875rem;                 /* 62px */
  line-height: 1.12;
  color: var(--color-brown);
  max-width: 16ch;
  margin-bottom: 3rem;
}

/* --- Offset 3-column grid --- */
.manu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.75rem;
}
.manu-grid > :nth-child(1) { grid-area: 1 / 1; }
.manu-grid > :nth-child(2) { grid-area: 1 / 2; }
.manu-grid > :nth-child(3) { grid-area: 1 / 3; }
.manu-grid > :nth-child(4) { grid-area: 2 / 2; }   /* card 4 */
.manu-grid > :nth-child(5) { grid-area: 2 / 3; }   /* card 5 */
.manu-grid > :nth-child(6) { grid-area: 2 / 1; }   /* text note */

.manu-card {
  margin: 0;
  background: #FFFFFF;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(44, 29, 13, 0.10);
  display: flex;
  flex-direction: column;
}
.manu-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.manu-card figcaption {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 1.3125rem;                /* 21px */
  line-height: 1.3;
  color: #3D3428;
  text-align: center;
  padding: 1.1rem 0.5rem 0.5rem;
}

.manu-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.manu-note p {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 1.5rem;                   /* 24px */
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #8A6A34;
  margin-bottom: 1.75rem;
  max-width: 16ch;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .manu { padding-block: 3.5rem; }
  .manu-inner { padding-inline: 1.25rem; }
  .manu-title { font-size: 2.5rem; }
  .manu-grid { grid-template-columns: 1fr 1fr; }
  .manu-grid > * { grid-area: auto !important; }
  .manu-note { order: 99; }
}
@media (max-width: 560px) {
  .manu-grid { grid-template-columns: 1fr; }
  .manu-note p { font-size: 1.3rem; }
}

/* ================================================================== *
 *  STRUCTURED EXECUTION — slider over background image
 * ================================================================== */
.flow {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-cream);
  background-color: #1C130A;
  background-image:
    linear-gradient(rgba(15,10,4,0.45), rgba(15,10,4,0.55)),
    url("../structure excution-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flow-inner {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  flex: 1;
}

.flow-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 3.25rem;                  /* ~52px */
  line-height: 1.12;
  color: var(--color-cream);
  max-width: 20ch;
}

/* --- Slider --- */
.flow-slider {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-block: auto;
}

.flow-track-wrap { flex: 1; overflow: hidden; }
.flow-track { display: flex; transition: transform 0.5s ease; }

.flow-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.flow-slide__img {
  flex: 0 0 auto;
  width: min(380px, 34%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  background: var(--gradient-gold);    /* fallback */
}
.flow-slide__img img { display: block; width: 100%; height: auto; }

.flow-slide__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 2rem;                     /* 32px */
  line-height: 1.2;
  color: var(--color-cream);
}
.flow-slide__label .hl {
  background: rgba(15, 10, 4, 0.6);
  padding: 0.32em 0.7em;
  border-radius: 4px;
}
.flow-slide__label strong { font-weight: var(--fw-bold); }

/* Round nav buttons (gold-gradient ring) */
.flow-nav {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  transition: transform var(--transition);
}
.flow-nav:hover { transform: scale(1.06); }
.flow-nav__ring { position: absolute; width: 88px; height: 88px; }
.flow-nav__arrow { position: relative; width: 46px; height: auto; }

/* --- Footer band: heading + description --- */
.flow-foot {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: end;
}
.flow-heading {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 4.5rem;                   /* 72px */
  line-height: 1.05;
  color: var(--color-cream);
}
.flow-desc {
  font-family: var(--font-alt);
  font-weight: 300;                    /* Gotham Light */
  font-size: 1.5rem;                   /* 24px */
  line-height: 1.5;
  color: rgba(248, 247, 243, 0.92);
  max-width: 34ch;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .flow-inner { padding: 3rem 1.25rem; gap: 2rem; }
  .flow-title { font-size: 2.25rem; }
  .flow-slide { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .flow-slide__img { width: 100%; max-width: 320px; }
  .flow-slide__label { font-size: 1.5rem; }
  .flow-nav { width: 60px; height: 60px; }
  .flow-nav__ring { width: 60px; height: 60px; }
  .flow-nav__arrow { width: 30px; }
  .flow-foot { grid-template-columns: 1fr; gap: 1.5rem; }
  .flow-heading { font-size: 2.75rem; }
  .flow-desc { font-size: 1.2rem; }
}

/* ================================================================== *
 *  STRATEGIC PARTNERSHIP
 * ================================================================== */
.partner {
  background: #F8F7F3;
  padding-block: 5rem;
}

.partner-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 2rem;
}

.partner-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.partner-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 4.5rem;                   /* 72px */
  line-height: 1.05;
  color: var(--color-brown);
}
.partner-sub {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 1.75rem;                  /* 28px */
  line-height: 1.3;
  color: #3D3428;
  max-width: 22ch;
}

/* --- Comparison columns --- */
.partner-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.compare-col { display: flex; flex-direction: column; gap: 0.85rem; }

.compare-head {
  background: #F3F1EC;
  border-radius: 14px;
  text-align: center;
  padding: 1.1rem 1rem;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 1.375rem;                 /* 22px */
  color: #9E6A63;                      /* dusty rose */
  box-shadow: 0 4px 14px rgba(44, 29, 13, 0.05);
}

.compare-list {
  background: #EFEDE7;
  border-radius: 14px;
  padding: 0.4rem 1.9rem;
  box-shadow: 0 4px 14px rgba(44, 29, 13, 0.05);
}
.compare-list li {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 1.5rem;                   /* 24px */
  color: #3D3428;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(44, 29, 13, 0.08);
}
.compare-list li:last-child { border-bottom: none; }

/* --- Trust panel --- */
.trust {
  background: #2A1C0E;
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.trust-img { align-self: stretch; }
.trust-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 12px;
}
.trust-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 4.5rem;                   /* 72px */
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 2rem;
}
.trust-body p {
  font-family: var(--font-alt);
  font-weight: 300;                    /* Gotham Light */
  font-size: 1.3125rem;                /* 21px */
  line-height: 1.5;
  color: rgba(248, 247, 243, 0.82);
  max-width: 42ch;
  margin-bottom: 1.25rem;
}
.trust-body p:last-child { margin-bottom: 0; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .partner { padding-block: 3.5rem; }
  .partner-inner { padding-inline: 1.25rem; }
  .partner-head { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
  .partner-title { font-size: 3rem; }
  .partner-sub { font-size: 1.375rem; }
  .partner-compare { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
  .trust { grid-template-columns: 1fr; gap: 1.75rem; padding: 1.25rem; }
  .trust-img img { min-height: 240px; }
  .trust-title { font-size: 2.75rem; }
}
