/* Auric Shield — static recreation of www.auricshield.in */
:root {
  --navy: #16163f;
  --navy-deep: #211f40;
  --gold: #d3b574;
  --gold-dark: #bf9e56;
  --blue: #0170b9;
  --text: #4b4f58;
  --text-dark: #222222;
  --black: #000000;
  --white: #ffffff;
  --gray-bg: #f0f0f0;
  --input-border: #d7d7d9;
  --header-h: 108px;
  --container: 1200px;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-heading: "Merriweather", serif;
  --font-body: "Montserrat", sans-serif;
  --overlay: rgba(22, 22, 63, 0.79);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.857;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue);
}

h1, h2, h3, h4, p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button,
input,
textarea {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #eaeaea;
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.brand-logo {
  width: 75px;
  height: auto;
  object-fit: scale-down;
  margin-right: 1em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

h1.site-title,
.site-title {
  font-family: var(--font-ui);
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  color: var(--text-dark);
  display: block;
}

.site-title a,
.brand .site-title {
  color: var(--text-dark);
}

.site-tagline {
  font-family: var(--font-ui);
  font-size: 21px;
  line-height: 31.5px;
  color: var(--text);
  text-align: center;
  width: 100%;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  color: var(--blue);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  height: 2px;
  width: 22px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

.nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: stretch;
  justify-content: flex-end;
}

.nav-list a {
  display: flex;
  align-items: center;
  height: var(--header-h);
  padding: 0 15px;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 60px;
  color: var(--text);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--blue);
}

/* Hero slider */
.hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-slides {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12%;
}

.hero-heading {
  font-family: var(--font-heading);
  font-weight: 100;
  font-size: 46px;
  line-height: 1.2em;
  color: var(--white);
  max-width: 80%;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-nav svg {
  width: 28px;
  height: 28px;
}

.hero-nav.prev { left: 18px; }
.hero-nav.next { right: 18px; }

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--gold);
}

/* Shared section helpers */
.section {
  position: relative;
}

.heading-accent {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 50px;
  line-height: 1.4em;
  color: var(--navy);
  padding-left: 30px;
  border-left: 4px solid var(--gold);
}

.heading-accent.gold {
  color: var(--gold-dark);
  text-transform: capitalize;
}

.heading-accent.light {
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
}

.heading-accent.no-bar {
  border-left: 0;
  padding-left: 0;
}

.body-copy {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.857;
  font-weight: 500;
  color: var(--black);
}

.body-copy.white {
  color: var(--white);
  font-weight: 400;
}

.body-copy.columns-2 {
  columns: 2;
  column-gap: 35px;
}

.body-copy ul {
  list-style: disc;
  padding-left: 1.2em;
}

.body-copy li + li {
  margin-top: 0.15em;
}

.body-copy strong {
  font-weight: 700;
}

/* History */
.history {
  padding: 100px 0;
}

.history-grid {
  display: grid;
  grid-template-columns: 32.75% 67.25%;
  align-items: center;
}

.history-copy .heading-accent {
  max-width: 360px;
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-track img {
  width: 100%;
  flex: 0 0 100%;
  max-height: 400px;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: transparent;
  border: 0;
  color: var(--gold);
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
}

.carousel-btn svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.history-note {
  margin-top: 18px;
  padding-right: 35px;
}

/* Intro / gold metallic */
.intro {
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-image: url("../images/gold-backdrop.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.intro-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 40px 60px 10px;
}

.intro .heading-accent {
  text-transform: capitalize;
  letter-spacing: 1.2px;
}

.intro-cards {
  display: grid;
  grid-template-columns: 280px 280px;
  gap: 20px;
  justify-content: end;
  margin-left: auto;
}

.info-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  width: 280px;
  height: 284px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px 24px;
}

.info-card p {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--black);
}

.info-card-map {
  position: relative;
  background-color: #ffffff;
  background-image: url("../images/india-map.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.info-card-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffffa8;
}

/* Quote */
.quote {
  padding: 100px 15px;
  text-align: center;
}

.quote h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 46px;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--navy);
  max-width: 1100px;
  margin: 0 auto;
}

/* Promoted */
.promoted {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.promoted-slides {
  position: absolute;
  inset: 0;
}

.promoted-slides span {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: kenburns 16s linear infinite;
}

.promoted-slides span.is-active {
  opacity: 1;
}

.promoted::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.75;
}

.promoted-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding: 40px 20px;
  text-align: center;
}

.promoted h2 {
  font-family: var(--font-heading);
  font-weight: 100;
  font-size: 28px;
  line-height: 1.4em;
  color: var(--white);
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

/* Billing */
.billing {
  padding: 100px 0 50px;
}

.billing-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: flex-end;
  gap: 20px;
}

.billing-grid .body-copy {
  padding: 0 0 30px 50px;
}

/* Help CTA */
.help {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/cta-home.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  color: var(--white);
}

.help::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.75;
}

.help-inner {
  position: relative;
  z-index: 1;
  max-width: 581px;
  padding: 40px 15px;
}

.help h2 {
  font-family: var(--font-heading);
  font-weight: 100;
  font-size: 50px;
  line-height: 1.4em;
  letter-spacing: 1.8px;
  text-transform: capitalize;
  color: var(--white);
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  padding: 12px 0;
}

.help p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.857;
  font-weight: 400;
  color: var(--white);
  margin: 20px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px 30px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.btn:hover {
  background: var(--white);
  color: var(--navy);
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn.wide {
  padding: 15px 50px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  padding: 1.66666em 20px;
}

.footer-inner p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.857;
}

/* Page banner */
.page-banner {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--navy-deep);
  background-image: url("../images/gold-backdrop.jpg");
  background-position: center;
  background-size: cover;
  padding: 40px 20px;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 55px;
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 0 6px rgba(78, 78, 78, 0.5);
}

.page-banner h1.caps {
  text-transform: uppercase;
}

.rotating-headline {
  margin-top: 15px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  min-height: 1.6em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
}

.rotating-headline .typewriter-text {
  white-space: nowrap;
}

.rotating-headline .cursor {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  background: var(--navy);
  margin-left: 3px;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* About */
.about-grid-wrap {
  padding: 50px 0 100px;
}

.about-frame {
  max-width: 1200px;
  margin: 0 auto;
  border: 4px solid var(--gold);
  padding: 20px;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.flip-card {
  height: 180px;
  background-color: transparent;
  background-image: linear-gradient(200deg, #F0F0F0 33%, #C0C0C0 85%);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  padding: 0 10px 0 30px;
  display: flex;
  align-items: center;
  text-align: left;
}

.flip-card-right {
  background-color: transparent;
  background-image: linear-gradient(-200deg, #F0F0F0 33%, #C0C0C0 85%);
}

.flip-card p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--black);
}

.clients {
  padding: 80px 15px 80px;
}

.clients .heading-accent {
  margin-bottom: 40px;
}

.logo-carousel {
  position: relative;
  padding: 0 48px;
}

.logo-viewport {
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
  gap: 24px;
}

.logo-track img {
  flex: 0 0 calc((100% - 96px) / 5);
  width: calc((100% - 96px) / 5);
  height: 110px;
  object-fit: contain;
  filter: grayscale(0.1);
}

/* Services */
.services-grid-section {
  background: #f0f0f0;
  padding: 100px 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  border-top: 4px solid var(--gold);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 25px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
  color: var(--white);
  max-width: 260px;
}

.jewellery-transit {
  background: var(--navy);
  padding: 50px 0;
  margin-bottom: 100px;
}

.jewellery-transit-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  align-items: center;
}

.exhibitions {
  padding: 20px 0 80px;
}

.exhibitions-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 20px;
  align-items: center;
}

.exhibitions-carousel .carousel-track img {
  max-height: 360px;
  object-fit: cover;
}

.exhibitions-copy {
  padding: 25px;
}

.exhibitions .heading-accent {
  margin-bottom: 24px;
}

/* Contact */
.love {
  background: var(--white);
  padding: 80px 25px;
}

.love-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.love .heading-accent {
  font-weight: 500;
}

.contact-band {
  background-image: url("../images/gold-backdrop.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 20px;
}

.contact-tagline {
  font-family: var(--font-heading);
  font-weight: 100;
  font-size: 32px;
  line-height: 1.4em;
  text-transform: capitalize;
  color: var(--navy);
  margin: 0;
}

.contact-list {
  list-style: none;
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--gold);
  padding: 28px 28px 28px 24px;
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.55;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-list svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  fill: var(--navy);
}

.contact-list a {
  color: var(--navy);
}

/* Responsive */
@media (max-width: 1024px) {
  .history-grid,
  .intro-grid,
  .billing-grid,
  .jewellery-transit-grid,
  .exhibitions-grid,
  .love-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .history,
  .quote,
  .billing {
    padding: 80px 15px;
  }

  .intro-grid {
    padding: 80px 20px 50px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .intro-cards {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    margin: 0 auto;
  }

  .info-card {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .heading-accent {
    font-size: 38px;
  }

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

  .logo-track img {
    flex-basis: calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
  }

  .contact-grid {
    padding: 48px 20px;
  }

  .exhibitions-copy {
    padding: 0;
  }

  .help h2 {
    font-size: 34px;
  }

  .page-banner h1 {
    font-size: 50px;
  }
}

@media (max-width: 921px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: 88px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    margin: 0;
    background: var(--white);
    border-top: 1px solid #eee;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list a {
    height: auto;
    line-height: 1.4;
    padding: 14px 8px;
    border-bottom: 1px solid #f0f0f0;
  }

  .site-title {
    font-size: 22px;
    line-height: 1.25;
  }

  .site-tagline {
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
  }

  .brand-logo {
    width: 56px;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 560px;
  }

  .hero-heading {
    font-size: 28px;
    line-height: 1.45em;
    max-width: 92%;
  }

  .heading-accent,
  .quote h2 {
    font-size: 28px;
  }

  .intro-cards,
  .about-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 160px;
    width: 100%;
    height: auto;
  }

  .flip-card {
    height: auto;
    min-height: 140px;
    padding: 20px;
  }

  .body-copy.columns-2 {
    columns: 1;
  }

  .help {
    background-attachment: scroll;
  }

  .help h2,
  .page-banner h1 {
    font-size: 34px;
  }

  .page-banner h1.caps {
    font-size: 40px;
  }

  .promoted h2 {
    font-size: 22px;
  }

  .logo-track img {
    flex-basis: calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
  }

  .rotating-headline {
    font-size: 15px;
  }

  .rotating-headline .typewriter-text {
    white-space: normal;
  }

  .contact-tagline {
    font-size: 26px;
  }

  .contact-list {
    padding: 22px 18px;
  }

  .billing-grid .body-copy,
  .history-note {
    padding: 0;
  }
}
