/* =========================
   RESET
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f1f1f;
  background: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}


/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 6%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eeeeee;
}

.logo {
  margin-left: 80px;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav a:hover {
  opacity: 0.55;
}


/* =========================
   GENERAL
   ========================= */

.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 18px;
  color: #777;
}

.button {
  display: inline-block;
  padding: 14px 28px;

  border: 1px solid #1f1f1f;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  transition: 0.3s;
}

.button:hover {
  background: #1f1f1f;
  color: #ffffff;
}


/* =========================
   HERO
   ========================= */
.hero {
  display: flex;
  align-items: center;

  min-height: 500px;
  padding: 0 6%;

  background: #f3f0eb;
}

.hero-content {
  width: 45%;
  padding: 55px 4% 55px 5%;
}

.hero-image {
  width: 65%;
  height: 550px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  display: block;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;

  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.06;

  margin-bottom: 22px;
}

.hero-text {
  max-width: 500px;
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
}


/* =========================
   FEATURED JEWELRY
   ========================= */

.section {
  padding: 100px 8%;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  margin: 0;
}

.jewelry-grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  justify-content: center;
  gap: 24px;
}

.jewelry-card {
  text-align: center;
  overflow: hidden;
}

.jewelry-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.jewelry-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  margin: 18px 0 6px;
}

.jewelry-card p {
  font-size: 14px;
  color: #777;
  margin: 0;
}


/* =========================
   ABOUT
   ========================= */

.about-section {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;

  gap: 70px;
  padding: 90px 8%;

  background: #f7f5f1;
}

.about-text {
  max-width: 520px;
}

.about-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.15;

  margin: 18px 0 30px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}


/* =========================
   PRIVATE SOURCING
   ========================= */

.sourcing-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  gap: 70px;
  padding: 100px 8%;

  background: #ffffff;
}

.sourcing-text {
  max-width: 560px;
}

.sourcing-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.15;

  margin: 18px 0 28px;
  color: #222;
}

.sourcing-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;

  margin-bottom: 18px;
}

.sourcing-section .button {
  margin-top: 28px;
}

.sourcing-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}


/* =========================
   CONTACT
   ========================= */

.contact-section {
  text-align: center;

  padding: 100px 20px;

  background: #f7f5f1;
}

.contact-section .eyebrow {
  margin-bottom: 18px;
}

.contact-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;

  margin: 0 0 18px;

  color: #222;
}

.contact-text {
  max-width: 600px;

  margin: 0 auto 35px;

  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.contact-info {
  width: fit-content;
  margin: 30px auto 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;

  margin: 12px 0;

  font-size: 15px;
  letter-spacing: 0.5px;
  color: #333;

  text-align: left;
}

.contact-label {
  font-weight: 500;
}

.contact-row a {
  color: #333;
}

.contact-row a:hover {
  opacity: 0.55;
}


/* =========================
   FOOTER
   ========================= */

footer {
  display: flex;
  justify-content: space-between;

  padding: 30px 6%;

  border-top: 1px solid #eeeeee;

  font-size: 12px;
  color: #777;
  letter-spacing: 1px;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 800px) {

  /* Header */

  .site-header {
    flex-direction: column;
    padding: 8px 4%;
    gap: 4px;
  }

  .logo {
    margin-left: 0;
  }

  .logo img {
    height: 58px;
    width: auto;
  }

  .nav {
    width: 100%;
    justify-content: center;

    flex-wrap: nowrap;
    gap: 0;
  }

  .nav a {
    font-size: 10px;
    letter-spacing: 0.4px;

    padding: 8px 9px;

    white-space: nowrap;
  }


  /* Hero */

  .hero {
    flex-direction: column;

    min-height: auto;
    padding: 0;
  }

  .hero-image {
    width: 100%;
    height: 280px;

    order: 1;
  }

  .hero-content {
    width: 100%;

    padding: 50px 7% 45px;

    order: 2;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;

    margin-bottom: 22px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.7;

    margin-bottom: 28px;
  }


  /* General Sections */

  .section {
    padding: 70px 7%;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 36px;
  }


  /* Jewelry */

  .jewelry-grid {
    grid-template-columns: 1fr;

    gap: 38px;

    width: 100%;
  }

  .jewelry-card {
    width: 100%;
    max-width: 430px;

    margin: 0 auto;
  }

  .jewelry-card img {
    width: 100%;
    height: 300px;

    object-fit: contain;
  }

  .jewelry-card h3 {
    font-size: 22px;

    margin: 18px 0 5px;
  }

  .jewelry-card p {
    font-size: 15px;
  }


  /* About */

  .about-section {
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 70px 7%;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 94%;
    max-width: 420px;

    margin: 0 auto;
  }


  /* Private Sourcing */

  .sourcing-section {
    grid-template-columns: 1fr;

    row-gap: 20px;
    column-gap: 0;

    padding: 60px 7%;
  }

  .sourcing-text {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .sourcing-text h2 {
    font-size: 34px;
    line-height: 1.2;

    margin-bottom: 22px;
  }

  .sourcing-text p {
    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 16px;
  }

  .sourcing-text p:last-of-type {
    margin-bottom: 0;
  }

  .sourcing-section .button {
    margin-top: 24px;
  }

  .sourcing-image {
    margin: 0;
    padding: 0;
  }

  .sourcing-image img {
    width: 100%;
    height: 320px;

    object-fit: cover;
  }


  /* Contact */

  .contact-section {
    padding: 65px 7% 70px;
  }

  .contact-section h2 {
    font-size: 34px;
    line-height: 1.25;
  }

  .contact-text {
    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 28px;
  }

  .contact-info {
    width: 100%;
    max-width: 360px;

    margin: 28px auto 0;
  }

  .contact-row {
    grid-template-columns: 88px 1fr;

    gap: 12px;

    margin: 10px 0;

    font-size: 14px;
  }


  /* Footer */

  footer {
    flex-direction: column;

    gap: 6px;

    text-align: center;

    padding: 22px 7%;

    font-size: 11px;
  }


  /* Anchor position */

  #jewelry,
  #about,
  #sourcing,
  #contact {
    scroll-margin-top: 110px;
  }

}