/* =========================================================
   LICERIA & CO. — CONTACT PAGE
========================================================= */

:root {
  --plum: #40323d;
  --deep-plum: #342630;
  --mauve: #765f65;

  --cream: #f7f1e8;
  --ivory: #fbf8f2;

  --gold: #b98a3c;
  --gold-light: #d4ad68;

  --text: #302831;
  --muted: #75686b;

  --white: #ffffff;
  --border: rgba(185, 138, 60, 0.35);

  --cinzel: "Cinzel", serif;
  --cormorant: "Cormorant Garamond", serif;
  --inter: "Inter", sans-serif;

  --container: 1320px;
}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--inter);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 100;

  color: #fff;

  padding: 20px 28px;
}

.site-header::before {
  content: "";

  position: absolute;

  top: 20px;
  left: 28px;
  right: 28px;

  height: 1px;

  background: rgba(255, 255, 255, 0.28);
}

.site-header::after {
  content: "";

  position: absolute;

  top: 32px;
  left: 28px;
  right: 28px;

  height: 1px;

  background: rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  position: relative;
  z-index: 2;

  max-width: 1450px;

  min-height: 85px;

  margin: auto;

  display: flex;

  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
  width: 270px;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: #fff;
}

.brand-mark {
  color: var(--gold-light);

  font-family: var(--cormorant);

  font-size: 30px;

  line-height: 1;

  margin-bottom: 3px;
}

.brand-name {
  font-family: var(--cinzel);

  font-size: 25px;

  letter-spacing: 4px;

  white-space: nowrap;
}

.brand-sub {
  margin-top: 5px;

  font-family: var(--inter);

  font-size: 8px;

  letter-spacing: 6px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
  display: flex;

  align-items: center;

  gap: 36px;
}

.main-nav a {
  position: relative;

  padding: 10px 0;

  color: rgba(255, 255, 255, 0.94);

  font-family: var(--inter);

  font-size: 18px;

  font-weight: 400;

  white-space: nowrap;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  bottom: 0;

  height: 1px;

  background: var(--gold-light);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}


/* =========================================================
   NAV ICONS
========================================================= */

.nav-icons {
  width: 100px;

  display: flex;

  justify-content: flex-end;

  gap: 25px;

  color: #fff;

  font-size: 25px;
}

/* =========================================================
   LICERIA & CO. — COMMON NAVBAR
   Use this in BOTH about.css and contact.css
========================================================= */

.site-header,
.about-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  color: #fff;

  padding: 24px 30px;
}

/* Top decorative lines */
.site-header::before,
.about-header::before {
  content: "";
  position: absolute;

  top: 24px;
  left: 30px;
  right: 30px;

  height: 1px;

  background: rgba(255, 255, 255, 0.22);
}

.site-header::after,
.about-header::after {
  content: "";
  position: absolute;

  top: 36px;
  left: 30px;
  right: 30px;

  height: 1px;

  background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   NAV WRAPPER
========================================================= */

.nav-wrap,
.about-nav {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1440px;

  min-height: 90px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   BRAND
========================================================= */

.brand,
.about-brand {
  width: 250px;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: #fff;

  text-decoration: none;
}

.brand-mark,
.brand-symbol {
  font-family: var(--cormorant);
  font-size: 38px;

  line-height: 1;

  color: var(--gold-light);

  margin-bottom: 5px;
}

.brand-name {
  font-family: var(--cinzel);

  font-size: 25px;

  letter-spacing: 4px;

  white-space: nowrap;
}

.brand-sub {
  margin-top: 5px;

  font-family: var(--inter);

  font-size: 9px;

  letter-spacing: 6px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav,
.about-navigation {
  display: flex;

  align-items: center;

  gap: 38px;
}


/* Normal navigation links */
.main-nav > a,
.about-navigation > a {
  position: relative;

  padding: 10px 0;

  color: rgba(255, 255, 255, 0.95);

  font-family: var(--inter);

  font-size: 18px;

  font-weight: 400;

  white-space: nowrap;

  text-decoration: none;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}


/* Gold underline */
.main-nav > a::after,
.about-navigation > a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  bottom: 0;

  height: 1px;

  background: var(--gold-light);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.3s ease;
}


/* Hover + active */
.main-nav > a:hover,
.main-nav > a.active,
.about-navigation > a:hover,
.about-navigation > a.active {
  color: var(--gold-light);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.about-navigation > a:hover::after,
.about-navigation > a.active::after {
  transform: scaleX(1);
}


/* =========================================================
   PRODUCTS DROPDOWN
========================================================= */

.nav-dropdown {
  position: relative;

  display: flex;
  align-items: center;
}


/* Products button */
.dropdown-trigger {
  position: relative;

  padding: 10px 0;

  border: none;

  background: transparent;

  color: rgba(255, 255, 255, 0.95);

  font-family: var(--inter);

  font-size: 18px;

  font-weight: 400;

  white-space: nowrap;

  cursor: pointer;

  transition: color 0.3s ease;
}


/* Small arrow */
.dropdown-trigger span {
  margin-left: 5px;

  font-size: 16px;

  color: var(--gold-light);

  transition: transform 0.3s ease;
}


/* Hover */
.dropdown-trigger:hover {
  color: var(--gold-light);
}


/* Rotate arrow when dropdown is open */
.nav-dropdown:hover .dropdown-trigger span {
  transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown-menu {
  position: absolute;

  top: calc(100% + 8px);
  left: 50%;

  transform: translateX(-50%) translateY(8px);

  min-width: 230px;

  padding: 12px 0;

  background: rgba(52, 38, 48, 0.97);

  border: 1px solid rgba(212, 173, 104, 0.35);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.25);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}


/* Show dropdown on hover */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}


/* Dropdown links */
.dropdown-menu a {
  display: block;

  padding: 12px 20px;

  color: #fff;

  font-family: var(--inter);

  font-size: 18px;

  font-weight: 400;

  white-space: nowrap;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}


/* Dropdown hover */
.dropdown-menu a:hover {
  color: var(--gold-light);

  background: rgba(185, 138, 60, 0.12);
}


/* Remove main nav underline from dropdown links */
.dropdown-menu a::after {
  display: none;
}


/* =========================================================
   NAV ICONS
========================================================= */

.nav-icons,
.about-nav-icons {
  width: 100px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 25px;

  color: #fff;

  font-size: 25px;
}

.nav-icons span,
.about-nav-icons span {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.nav-icons span:hover,
.about-nav-icons span:hover {
  color: var(--gold-light);

  transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle,
.about-menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  background: transparent;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 5px;

  cursor: pointer;
}

.menu-toggle span,
.about-menu-toggle span {
  width: 20px;
  height: 1px;

  background: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .main-nav,
  .about-navigation {
    gap: 22px;
  }

  .main-nav > a,
  .about-navigation > a,
  .dropdown-trigger {
    font-size: 18px;
  }

  .brand,
  .about-brand {
    width: 220px;
  }

  .brand-name {
    font-size: 21px;
  }

  .nav-icons,
  .about-nav-icons {
    width: 80px;
    gap: 18px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .site-header,
  .about-header {
    padding: 15px 20px;
  }

  .site-header::before,
  .about-header::before {
    top: 15px;
    left: 20px;
    right: 20px;
  }

  .site-header::after,
  .about-header::after {
    top: 27px;
    left: 20px;
    right: 20px;
  }

  .nav-wrap,
  .about-nav {
    min-height: 65px;
  }


  /* Brand */
  .brand,
  .about-brand {
    width: auto;

    align-items: flex-start;
  }

  .brand-mark,
  .brand-symbol {
    display: none;
  }

  .brand-name {
    font-size: 17px;

    letter-spacing: 2px;
  }

  .brand-sub {
    font-size: 7px;

    letter-spacing: 4px;
  }


  /* Icons */
  .nav-icons,
  .about-nav-icons {
    display: none;
  }


  /* Hamburger */
  .menu-toggle,
  .about-menu-toggle {
    display: flex;
  }


  /* Navigation */
  .main-nav,
  .about-navigation {
    position: absolute;

    top: 70px;

    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px 20px;

    background: rgba(52, 38, 48, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.15);
  }


  .main-nav.open,
  .about-navigation.open {
    display: flex;
  }


  .main-nav > a,
  .about-navigation > a {
    padding: 14px 8px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 18px;
  }


  /* Products dropdown on mobile */
  .nav-dropdown {
    display: block;
  }

  .dropdown-trigger {
    width: 100%;

    padding: 14px 8px;

    text-align: left;

    font-size: 18px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: static;

    transform: none;

    min-width: 100%;

    padding: 0;

    background: rgba(0, 0, 0, 0.12);

    border: none;

    box-shadow: none;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    display: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 25px;

    font-size: 17px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  background: transparent;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 1px;

  background: #fff;
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
  position: relative;

  min-height: 700px;
  height: 82vh;

  display: flex;

  align-items: center;

  overflow: hidden;

  color: #fff;

  background:

    url("assets/images/contact-bg.png");

  background-size: cover;

  background-position: center;
}


/* Elegant border around hero */

.contact-hero::before {
  content: "";

  position: absolute;

  inset: 18px;

  border: 1px solid rgba(255, 255, 255, 0.20);

  pointer-events: none;

  z-index: 5;
}

.contact-hero::after {
  content: "";

  position: absolute;

  inset: 26px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  pointer-events: none;

  z-index: 5;
}


/* =========================================================
   HERO COPY
========================================================= */

.hero-copy {
  position: relative;

  z-index: 10;

  width: min(700px, 50%);

  margin-left: max(8vw, 80px);

  padding-top: 55px;

  text-align: left;
}

.kicker {
  font-family: var(--cinzel);

  font-size: 20px;

  letter-spacing: 5px;

  color: #f0dfc0;

  margin-bottom: 25px;
}

.hero-copy h1 {
  font-family: var(--cormorant);

  font-size: clamp(70px, 7vw, 105px);

  font-weight: 400;

  line-height: 0.95;

  color: #fff;

  margin: 0;
}

.hero-copy h1 em {
  color: var(--gold-light);

  font-style: normal;
}


/* =========================================================
   HERO DIVIDER
========================================================= */

.divider {
  display: flex;

  align-items: center;

  gap: 15px;

  width: 330px;

  margin: 30px 0;
}

.divider span {
  flex: 1;

  height: 1px;

  background: var(--gold-light);
}

.divider {
  color: var(--gold-light);

  font-family: var(--cormorant);

  font-size: 18px;
}


/* =========================================================
   HERO TEXT
========================================================= */

.hero-text {
  max-width: 590px;

  font-family: var(--cormorant);

  font-size: 30px;

  line-height: 1.65;

  color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   DECORATIVE JEWELLERY SCENE
========================================================= */

.jewellery-scene {
  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;
}


/* =========================================================
   CONTACT CARD WRAPPER
========================================================= */

.contact-card-wrap {
  position: relative;

  z-index: 20;

  margin-top: -80px;

  padding: 0 5vw 80px;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.contact-card {
  position: relative;

  max-width: 1280px;

  margin: auto;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  background: var(--ivory);
 border-radius: 25px 0 25px 0;
  border: 1px solid rgba(64, 50, 61, .12);

  box-shadow:
    0 25px 60px rgba(52, 38, 48, .13);
}

.contact-card::before {
  content: "";

  position: absolute;

  inset: 12px;

  border: 1px solid rgba(185,138,60,.16);
 border-radius: 25px 0 25px 0;
  pointer-events: none;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info {
  position: relative;

  padding: 65px 65px 60px;

  border-right: 1px solid rgba(64, 50, 61, .15);
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  margin-bottom: 35px;
}

.section-title.centered {
  align-items: center;

  text-align: center;
}

.mini-flourish {
  color: var(--gold);

  font-family: var(--cormorant);

  font-size: 23px;

  margin-bottom: 6px;
}

.section-title h2 {
  font-family: var(--cinzel);

  font-size: 25px;

  font-weight: 500;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--plum);
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.contact-item {
  display: flex;

  align-items: center;

  gap: 20px;

  min-height: 78px;

  padding: 15px 0;

  border-bottom: 1px solid rgba(64,50,61,.18);

  transition: transform .3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item.no-hover:hover {
  transform: none;
}

.contact-icon {
  flex: 0 0 58px;

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--plum);

  color: #fff;

  font-family: var(--cormorant);

  font-size: 27px;

  transition:
    background .3s ease,
    transform .3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--gold);

  transform: scale(1.05);
}

.contact-item > span:last-child {
  display: flex;

  flex-direction: column;

  gap: 5px;
}

.contact-item strong {
  font-family: var(--cinzel);

  font-size: 18px;

  letter-spacing: 1.5px;

  color: var(--plum);
}

.contact-item small {
  font-family: var(--inter);

  font-size: 14px;

  line-height: 1.6;

  color: #62585a;
}


/* =========================================================
   STORE HOURS
========================================================= */

.contact-hours {
  display: flex;

  flex-direction: column;

  gap: 7px;

  margin-top: 28px;

  padding-top: 10px;
}

.contact-hours strong {
  font-family: var(--cinzel);

  font-size: 11px;

  letter-spacing: 1.5px;

  color: var(--gold);
}

.contact-hours span {
  font-size: 12px;

  letter-spacing: .4px;

  color: #62585a;
}


/* =========================================================
   BOTTOM LOTUS
========================================================= */

.bottom-lotus {
  margin-top: 30px;

  text-align: center;

  color: var(--gold);

  font-size: 45px;

  opacity: .7;
}


/* =========================================================
   FORM PANEL
========================================================= */

.form-panel {
  padding: 65px 65px 55px;

  background: rgba(255,255,255,.32);
}


/* =========================================================
   FORM
========================================================= */

#contactForm {
  width: 100%;
}

#contactForm label {
  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-bottom: 18px;
}

#contactForm label > span {
  font-family: var(--inter);

  font-size: 15px;

  letter-spacing: .5px;

  color: #675b5e;
}

.field-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 100%;

  border: 1px solid rgba(64,50,61,.18);

  background: rgba(255,255,255,.38);

  color: var(--text);

  outline: none;

  padding: 15px 16px;

  border-radius: 0;

  transition:
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

#contactForm input,
#contactForm select {
  height: 50px;
}

#contactForm textarea {
  min-height: 135px;

  resize: vertical;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  border-color: var(--gold);

  background: #fff;

  box-shadow: 0 0 0 3px rgba(185,138,60,.08);
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #8a7d80;
}


/* =========================================================
   SEND BUTTON
========================================================= */

.send-btn {
  width: 100%;

  min-height: 52px;

  border: 1px solid var(--plum);

  background: var(--plum);

  color: #fff;

  font-family: var(--cinzel);

  font-size: 15px;

  letter-spacing: 2px;

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease;
}

.send-btn b {
  margin-left: 18px;

  font-size: 20px;

  font-weight: 400;

  vertical-align: middle;
}

.send-btn:hover {
  background: var(--gold);

  border-color: var(--gold);
}


/* =========================================================
   FORM STATUS
========================================================= */

.form-status {
  min-height: 24px;

  margin-top: 12px;

  text-align: center;

  font-size: 12px;

  color: var(--gold);
}


/* =========================================================
   FORM DIVIDER
========================================================= */

.form-divider {
  margin-top: 25px;

  text-align: center;

  color: var(--gold);

  font-size: 18px;
}


/* =========================================================
   WHY CONNECT
========================================================= */

.why-connect {
  padding: 70px 6vw 85px;

  background:
    linear-gradient(
      135deg,
      var(--deep-plum),
      var(--plum)
    );

  color: #fff;
}


/* =========================================================
   WHY HEADING
========================================================= */

.why-heading {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-bottom: 45px;
}

.why-heading span {
  color: var(--gold-light);

  font-family: var(--cormorant);

  font-size: 18px;
}

.why-heading h2 {
  font-family: var(--cinzel);

  font-size: 30px;

  font-weight: 400;

  letter-spacing: 3px;

  color: #ead5ad;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {
  max-width: 1250px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);
}

.benefits article {
  text-align: center;

  padding: 15px 35px;

  border-right: 1px solid rgba(215,178,105,.30);
}

.benefits article:last-child {
  border-right: 0;
}

.benefit-icon {
  height: 48px;

  margin-bottom: 12px;

  color: var(--gold-light);

  font-family: var(--cormorant);

  font-size: 32px;
}

.benefits h3 {
  font-family: var(--cinzel);

  font-size: 20px;

  letter-spacing: 1.5px;

  font-weight: 500;

  color: #e5c88e;

  margin-bottom: 13px;
}

.benefits p {
  font-family: var(--cormorant);

  font-size: 20px;

  line-height: 1.55;

  color: rgba(255,255,255,.78);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  background: var(--ivory);

  color: #4d4446;
}


/* =========================================================
   FOOTER GRID
========================================================= */

.footer-grid {
  max-width: 1350px;

  margin: auto;

  padding: 65px 7vw 50px;

  display: grid;

  grid-template-columns: 1.25fr 1fr 1fr 1.25fr;

  gap: 55px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
  text-align: left;
}

.footer-mark {
  color: var(--gold);

  font-size: 25px;

  margin-bottom: 5px;
}

.footer-name {
  font-family: var(--cinzel);

  font-size: 22px;

  letter-spacing: 3px;
}

.footer-sub {
  font-size: 8px;

  letter-spacing: 5px;

  margin-top: 5px;
}

.footer-brand p {
  max-width: 290px;

  margin-top: 20px;

  font-family: var(--cormorant);

  font-size: 17px;

  line-height: 1.55;

  color: #75696b;
}


/* =========================================================
   SOCIALS
========================================================= */

.socials {
  display: flex;

  gap: 9px;

  margin-top: 22px;
}

.socials a {
  width: 31px;
  height: 31px;

  border: 1px solid rgba(64,50,61,.25);

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 12px;

  transition:
    background .3s ease,
    color .3s ease;
}

.socials a:hover {
  background: var(--plum);

  color: #fff;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-grid > div:not(.footer-brand):not(.newsletter) {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.footer-grid h4 {
  font-family: var(--cinzel);

  font-size: 18px;

  letter-spacing: 1.5px;

  color: var(--gold);

  margin-bottom: 12px;
}

.footer-grid > div > a {
  font-size: 18px;

  line-height: 1.6;

  color: #62585a;

  transition: color .3s ease;
}

.footer-grid > div > a:hover {
  color: var(--gold);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter p {
  font-family: var(--cormorant);

  font-size: 16px;

  line-height: 1.55;

  color: #75696b;

  margin-bottom: 15px;
}

#newsletterForm {
  display: flex;

  width: 100%;
}

#newsletterForm input {
  flex: 1;

  min-width: 0;

  height: 45px;

  padding: 0 13px;

  border: 1px solid rgba(64,50,61,.2);

  background: #fff;

  outline: none;
}

#newsletterForm button {
  width: 52px;

  border: 0;

  background: var(--plum);

  color: #fff;

  transition: background .3s ease;
}

#newsletterForm button:hover {
  background: var(--gold);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
  min-height: 55px;

  padding: 0 7vw;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  background: var(--plum);

  color: rgba(255,255,255,.75);

  font-size: 10px;
}

.footer-bottom span:first-child,
.footer-bottom span:last-child {
  color: var(--gold-light);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .main-nav {
    gap: 22px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .brand {
    width: 220px;
  }

  .brand-name {
    font-size: 21px;
  }

  .hero-copy {
    margin-left: 7vw;

    width: 55%;
  }

  .contact-info,
  .form-panel {
    padding: 50px 40px;
  }

  .benefits article {
    padding: 15px 20px;
  }

  .footer-grid {
    gap: 30px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  /* HEADER */

  .site-header {
    padding: 15px 20px;
  }

  .site-header::before {
    top: 15px;
    left: 20px;
    right: 20px;
  }

  .site-header::after {
    top: 27px;
    left: 20px;
    right: 20px;
  }

  .nav-wrap {
    min-height: 65px;
  }

  .brand {
    width: auto;

    align-items: flex-start;
  }

  .brand-mark {
    display: none;
  }

  .brand-name {
    font-size: 17px;

    letter-spacing: 2px;
  }

  .brand-sub {
    font-size: 7px;

    letter-spacing: 4px;
  }

  .nav-icons {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;

    top: 70px;

    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px 20px;

    background: rgba(52,38,48,.98);

    border: 1px solid rgba(255,255,255,.15);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 8px;

    border-bottom: 1px solid rgba(255,255,255,.1);

    font-size: 12px;
  }


  /* HERO */

  .contact-hero {
    min-height: 720px;

    height: 100svh;

    background-position: center;
  }

  .hero-copy {
    width: 90%;

    margin: auto;

    padding: 120px 25px 40px;

    align-self: center;

    text-align: center;
  }

  .kicker {
    font-size: 11px;

    letter-spacing: 3px;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .divider {
    width: 240px;

    margin: 25px auto;
  }

  .hero-text {
    margin: auto;

    max-width: 500px;

    font-size: 19px;

    line-height: 1.6;
  }

  .jewellery-scene {
    opacity: .38;
  }

  .ring {
    width: 210px;
    height: 90px;

    border-width: 6px;
  }

  .ring-one {
    right: -30px;
    top: 210px;
  }

  .ring-two {
    right: -55px;
    top: 265px;
  }

  .pendant {
    right: -10px;

    top: 360px;

    transform: scale(.72);
  }


  /* CONTACT CARD */

  .contact-card-wrap {
    margin-top: -45px;

    padding: 0 20px 60px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-info {
    border-right: 0;

    border-bottom: 1px solid rgba(64,50,61,.15);

    padding: 50px 30px;
  }

  .form-panel {
    padding: 50px 30px;
  }

  .field-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  /* WHY */

  .why-connect {
    padding: 60px 25px;
  }

  .why-heading h2 {
    font-size: 13px;

    letter-spacing: 2px;

    text-align: center;
  }

  .benefits {
    grid-template-columns: 1fr 1fr;
  }

  .benefits article {
    padding: 30px 15px;

    border-right: 0;

    border-bottom: 1px solid rgba(215,178,105,.25);
  }

  .benefits article:nth-child(odd) {
    border-right: 1px solid rgba(215,178,105,.25);
  }

  .benefits article:nth-child(3),
  .benefits article:nth-child(4) {
    border-bottom: 0;
  }


  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1fr 1fr;

    padding: 50px 28px;

    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 15px 20px;

    flex-direction: column;

    text-align: center;

    gap: 8px;
  }

  .footer-bottom span:first-child,
  .footer-bottom span:last-child {
    display: none;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

  .contact-hero {
    min-height: 680px;
  }

  .hero-copy {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-text {
    font-size: 18px;
  }

  .contact-card-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-info,
  .form-panel {
    padding: 45px 22px;
  }

  .contact-item {
    gap: 14px;
  }

  .contact-icon {
    flex-basis: 50px;

    width: 50px;
    height: 50px;

    font-size: 23px;
  }

  .contact-item small {
    font-size: 12px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .benefits article,
  .benefits article:nth-child(odd) {
    border-right: 0;

    border-bottom: 1px solid rgba(215,178,105,.25);
  }

  .benefits article:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }
}