@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:wght@400;600;700&display=swap");

:root {
  --ink: #070908;
  --ink-soft: #111412;
  --gold: #dfa80f;
  --gold-deep: #b78305;
  --paper: #f7eee0;
  --muted: #c9c2b4;
  --line: rgba(227, 170, 25, 0.42);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background: #070908 url("assets/bg-grey.jpg") repeat;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  place-items: center;
  padding: clamp(54px, 8vh, 88px) clamp(18px, 5vw, 72px);
  border-bottom: 0;
}

.hero-noise {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  transform: translateX(-50%);
  background: #070908 url("assets/bg-grey.jpg") repeat;
  opacity: 1;
}

.hero-inner {
  position: relative;
  width: min(1680px, 100%);
  min-width: 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: rgba(247, 238, 224, 0.76);
  font-size: clamp(0.68rem, 1.5vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: rgba(18, 21, 20, 0.72);
}

.hero-word {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  margin: 0 auto 40px;
  color: var(--gold);
  font-family: "Anton", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(3.6rem, 18vw, 20rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-word span {
  display: grid;
  min-width: 0;
  min-height: 1em;
  place-items: center;
  border-left: 1px solid rgba(227, 170, 25, 0.72);
}

.hero-word span:last-child {
  border-right: 1px solid rgba(227, 170, 25, 0.72);
}

.hero-subtitle {
  width: min(980px, 100%);
  margin: 0 auto;
  color: rgba(247, 238, 224, 0.82);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.7rem);
  letter-spacing: clamp(0.14em, 1.2vw, 0.32em);
  line-height: 1.6;
  text-transform: uppercase;
  white-space: nowrap;
}

.careers-hero .hero-subtitle {
  width: min(1080px, 100%);
  max-width: calc(100vw - 32px);
  white-space: normal;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button-primary,
.button-secondary,
.button-dark {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 22px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-secondary {
  border-color: var(--line);
  color: var(--paper);
  background: rgba(247, 238, 224, 0.04);
}

.button-dark {
  color: var(--gold);
  background: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f3c244;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--paper);
}

.compact {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.8rem;
}

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.gold-band {
  color: var(--ink);
  background: #dfa80f url("assets/bg-yellow.jpg") repeat;
}

.services-band,
.jobs-band {
  padding: clamp(54px, 8vw, 96px) 0;
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto clamp(34px, 6vw, 58px);
  text-align: center;
}

.section-heading h2,
.store-inner h2,
.contact-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 4.15rem);
  line-height: 0.98;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(18, 21, 20, 0.28);
}

.service-item {
  min-height: 250px;
  padding: clamp(24px, 4vw, 38px);
  background: #dfa80f url("assets/bg-yellow.jpg") repeat;
}

.service-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    filter 180ms ease;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.02);
  outline: 0;
}

.service-index {
  display: block;
  margin-bottom: 24px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.service-icon {
  display: inline-grid;
  width: clamp(52px, 6vw, 76px);
  height: clamp(52px, 6vw, 76px);
  margin-bottom: clamp(26px, 4vw, 42px);
  place-items: center;
  color: rgba(7, 9, 8, 0.86);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.8;
}

.service-item h3,
.product-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  line-height: 1.05;
}

.service-item p,
.product-card p,
.contact-inner p {
  margin: 0;
  line-height: 1.7;
}

.service-item-india {
  grid-column: 1 / -1;
}

.products-section {
  padding: clamp(58px, 8vw, 110px) 0;
  background: #070908 url("assets/bg-grey.jpg") repeat;
}

.split-heading {
  display: flex;
  width: 100%;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  text-align: left;
}

.split-heading h2 {
  max-width: 760px;
}

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

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(227, 170, 25, 0.22);
  background: rgba(247, 238, 224, 0.035);
  color: inherit;
  padding: 18px;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(223, 168, 15, 0.62);
  background: rgba(247, 238, 224, 0.06);
  transform: translateY(-3px);
  outline: 0;
}

.product-card img {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(247, 238, 224, 0.08);
  object-fit: cover;
}

.product-kicker {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-detail {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(54px, 8vw, 108px) 0;
  background: #070908 url("assets/bg-grey.jpg") repeat;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.product-detail h1 {
  margin: 0 0 24px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 8.5rem);
  line-height: 0.88;
  text-wrap: balance;
}

.product-detail p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(247, 238, 224, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.7;
}

.product-detail img {
  border: 1px solid rgba(227, 170, 25, 0.24);
  background: rgba(247, 238, 224, 0.035);
}

.store-strip {
  padding: clamp(38px, 6vw, 68px) 0;
  color: var(--ink);
  background: #dfa80f url("assets/bg-yellow.jpg") repeat;
}

.careers-strip {
  padding: clamp(44px, 7vw, 78px) 0;
  background: #070908 url("assets/bg-grey.jpg") repeat;
}

.store-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* Ensure store and careers action buttons share the same width */
.store-inner a.button-dark,
.store-inner a.button-secondary {
  flex: 0 0 220px;
  text-align: center;
}

.store-inner h2 {
  max-width: 760px;
}

.contact-section {
  padding: clamp(56px, 8vw, 92px) 0;
  background: #070908 url("assets/bg-grey.jpg") repeat;
  text-align: center;
}

.contact-inner {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.contact-inner h2 {
  color: var(--gold);
}

.contact-inner p {
  max-width: 620px;
  color: rgba(247, 238, 224, 0.78);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  letter-spacing: 0.02em;
}

.contact-inner a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.contact-inner a:hover,
.contact-inner a:focus-visible {
  text-decoration: underline;
}

.site-footer {
  padding: 22px 18px;
  color: var(--paper);
  background: #dfa80f url("assets/bg-yellow.jpg") repeat;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.careers-hero {
  min-height: 100vh;
  min-height: 100svh;
}

.careers-title {
  max-width: 100%;
  margin: 0 0 28px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 11rem);
  line-height: 0.86;
  overflow-wrap: break-word;
  text-wrap: balance;
}


@media (max-width: 900px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .contact-inner h2 {
    font-size: clamp(3rem, 8vw, 4.75rem);
  }

  .contact-inner p {
    font-size: clamp(1.35rem, 3.4vw, 1.75rem);
  }

  .site-footer {
    font-size: clamp(1.25rem, 3.1vw, 1.6rem);
  }

  .service-grid,
  .product-grid,
  .product-detail-inner {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .store-inner {
    align-items: start;
    flex-direction: column;
  }

  .store-inner a.button-dark,
  .store-inner a.button-secondary {
    flex: 0 0 auto;
    width: fit-content;
    min-width: 0;
    padding-inline: 26px;
  }

  .careers-hero .hero-subtitle {
    width: min(680px, 100%);
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 760px) {
  .hero-subtitle {
    width: min(620px, 100%);
    font-size: clamp(1rem, 3vw, 1.28rem);
    letter-spacing: 0.12em;
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 48px 16px;
  }

  .hero-word {
    margin-bottom: 28px;
    font-size: clamp(2.15rem, 16vw, 4.8rem);
  }

  .hero-subtitle {
    white-space: normal;
  }

  .careers-title {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
  }

  .hero-actions,
  .button-primary,
  .button-secondary,
  .button-dark {
    width: 100%;
  }

  .store-inner a.button-dark,
  .store-inner a.button-secondary {
    width: fit-content;
    max-width: 100%;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .service-item {
    min-height: auto;
  }
}
