/* =========================================================
   PINNACLE FAIRY
   Elegant Beauty • Fashion • Perfumes • Incense
   Main Stylesheet
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --cream: #f8f3ed;
  --warm-white: #fffdfb;
  --beige: #eadfd4;

  --gold: #c99a6c;
  --gold-dark: #b68150;

  --text: #22201e;
  --muted: #73706c;

  --dark: #292a2b;
  --dark-soft: #343536;

  --line: #e8e1da;
  --line-dark: #454647;

  --white: #ffffff;

  --container: 1160px;

  --transition: 0.25s ease;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;

  color: var(--text);
  background: #fff;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;

  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */

.announcement {
  width: 100%;
  min-height: 34px;

  padding: 0 4.5%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--cream);
  color: #4d4a47;

  font-size: 10px;
}

.announcement-left,
.announcement-right {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.announcement i {
  margin-right: 7px;
  color: #55514d;
}

.announcement-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.announcement-center b {
  font-size: 8px;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
  width: 100%;
  height: 105px;

  padding: 0 4.5%;

  display: flex;
  align-items: center;

  background: #fff;
  border-bottom: 1px solid #eee8e2;

  position: relative;
  z-index: 1000;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand {
  width: 180px;
  height: 105px;

  flex: 0 0 180px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  overflow: visible;

  position: relative;
  z-index: 1100;
}

.logo-image {
  display: block;

  width: 150px;
  height: 95px;

  max-width: 150px;
  max-height: 95px;

  object-fit: contain;
  object-position: center;

  flex-shrink: 0;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  height: 100%;

  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 34px;

  min-width: 0;
}

.nav a {
  height: 100%;

  display: flex;
  align-items: center;

  position: relative;

  color: #272522;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.15px;
  text-transform: uppercase;

  white-space: nowrap;

  transition:
    color var(--transition);
}

.nav a:hover {
  color: var(--gold-dark);
}

.nav a.active {
  color: var(--gold-dark);
}

.nav a.active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 25px;

  width: 100%;
  height: 1px;

  background: var(--gold);
}

.arrow {
  margin-left: 7px;
  font-size: 13px;
  line-height: 1;
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.nav-actions {
  width: 150px;

  flex: 0 0 150px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 19px;
}

.nav-actions button {
  width: 30px;
  height: 35px;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  color: #34312e;

  font-size: 16px;

  transition:
    color var(--transition),
    transform var(--transition);
}

.nav-actions button:hover {
  color: var(--gold-dark);
  transform: translateY(-1px);
}


/* =========================================================
   CART COUNT
   ========================================================= */

.cart-button {
  position: relative;
}

#cartCount {
  position: absolute;

  top: -3px;
  right: -5px;

  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--gold);
  color: #fff;

  font-family: Arial, sans-serif;
  font-size: 9px;
  line-height: 1;

  pointer-events: none;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 8px;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  background: transparent;

  position: relative;
  z-index: 1200;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 24px;
  height: 2px;

  background: #292725;

  transition:
    transform 0.3s ease,
    opacity 0.25s ease;
}


/* Hamburger -> X */

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   SEARCH PANEL
   ========================================================= */

.search-panel {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 90px;

  padding: 15px 5%;

  display: flex;
  align-items: center;
  gap: 15px;

  background: rgba(255, 255, 255, 0.98);

  border-bottom: 1px solid var(--line);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;

  z-index: 3000;
}

.search-panel.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-panel input {
  flex: 1;

  height: 48px;

  padding: 0 18px;

  border: 1px solid var(--line);

  outline: none;

  background: #fff;

  color: var(--text);

  font-size: 13px;
}

.search-panel input:focus {
  border-color: var(--gold);
}

.search-panel button {
  width: 45px;
  height: 45px;

  color: #333;

  font-size: 20px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  width: 100%;
  min-height: 438px;

  position: relative;

  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;

  overflow: hidden;

  background: #f7f2ec;
}

.hero-copy {
  padding: 60px 8% 60px 12%;

  position: relative;
  z-index: 2;
}

.eyebrow {
  color: #6f6b67;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.55px;
}

.hero h1 {
  margin: 23px 0 20px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(54px, 5.3vw, 76px);
  font-weight: 600;

  line-height: 0.9;

  letter-spacing: -2px;
}

.hero-text {
  max-width: 390px;

  margin-bottom: 27px;

  color: #6e6a66;

  font-size: 12px;
  line-height: 1.8;
}


/* =========================================================
   BUTTON
   ========================================================= */

.btn {
  min-width: 106px;
  min-height: 42px;

  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: var(--gold);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.2px;

  transition:
    background var(--transition),
    transform var(--transition);
}

.btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-art {
  width: 100%;
  height: 438px;

  position: relative;

  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(247, 242, 236, 0.35),
      transparent 35%
    );

  pointer-events: none;
}


/* =========================================================
   SLIDER DOTS
   ========================================================= */

.slider-dots {
  position: absolute;

  bottom: 16px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  align-items: center;

  gap: 7px;

  z-index: 5;
}

.slider-dots span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #d8d2cc;
}

.slider-dots span.active {
  width: 13px;

  border-radius: 8px;

  background: #262321;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.section {
  width: 100%;
  max-width: var(--container);

  margin: 0 auto;

  padding: 45px 20px 48px;
}

.section-heading {
  text-align: center;

  margin-bottom: 25px;
}

.section-heading h2,
.newsletter h2 {
  margin-top: 8px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 37px;
  font-weight: 600;

  line-height: 1;
}


/* Heading line */

.heading-line {
  width: 52px;
  height: 1px;

  display: block;

  margin: 13px auto 0;

  position: relative;

  background: var(--gold);
}

.heading-line i {
  width: 6px;
  height: 6px;

  position: absolute;

  left: 50%;
  top: -3px;

  transform: translateX(-50%);

  border: 1px solid var(--gold);
  border-radius: 50%;

  background: #fff;
}


/* Category grid */

.category-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 14px;
}

.category-card {
  text-align: center;

  overflow: visible;
}

.category-image {
  width: 100%;
  height: 270px;

  position: relative;

  overflow: hidden;

  background: var(--cream);
}

.category-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.04);
}


/* Category icon */

.category-icon {
  width: 58px;
  height: 58px;

  position: absolute;

  left: 50%;
  bottom: -29px;

  transform: translateX(-50%);

  display: grid;
  place-items: center;

  border: 1px solid #eee6df;
  border-radius: 50%;

  background: #fff;

  color: var(--gold-dark);

  font-size: 17px;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.category-card h3 {
  margin-top: 39px;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.2px;
}

.shop-link {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-top: 10px;

  color: var(--gold-dark);

  font-size: 10px;
}

.shop-link i {
  font-size: 9px;

  transition: transform var(--transition);
}

.category-card:hover .shop-link i {
  transform: translateX(3px);
}


/* =========================================================
   BENEFITS
   ========================================================= */

.benefits {
  width: 100%;
  min-height: 113px;

  padding: 25px max(5%, calc((100% - 1160px) / 2));

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  background: var(--cream);

  border-top: 1px solid #f0eae4;
  border-bottom: 1px solid #f0eae4;
}

.benefit {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  border-right: 1px solid #e6ddd4;
}

.benefit:last-child {
  border-right: 0;
}

.benefit > i {
  flex-shrink: 0;

  color: #353331;

  font-size: 23px;
}

.benefit strong,
.benefit small {
  display: block;
}

.benefit strong {
  margin-bottom: 3px;

  font-size: 10px;
}

.benefit small {
  color: #77736f;

  font-size: 9px;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter {
  width: 100%;
  max-width: var(--container);

  min-height: 116px;

  margin: 0 auto;
  padding: 28px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.newsletter h2 {
  margin: 5px 0;

  font-size: 28px;
}

.newsletter > div > p:last-child {
  color: #77736f;

  font-size: 10px;
}


/* Newsletter form */

.subscribe {
  width: 430px;
  height: 40px;

  flex-shrink: 0;

  display: flex;

  border: 1px solid #e1dcd7;
}

.subscribe input {
  min-width: 0;

  flex: 1;

  padding: 0 13px;

  border: 0;
  outline: 0;

  color: var(--text);
  background: #fff;

  font-size: 10px;
}

.subscribe input::placeholder {
  color: #999;
}

.subscribe button {
  width: 128px;

  flex-shrink: 0;

  color: #fff;
  background: var(--gold);

  font-size: 9px;
  font-weight: 600;

  transition: background var(--transition);
}

.subscribe button:hover {
  background: var(--gold-dark);
}


/* =========================================================
   OFFERS
   ========================================================= */

.offers-section {
  width: 100%;

  padding: 70px 20px;

  text-align: center;

  background:
    linear-gradient(
      rgba(248, 243, 237, 0.94),
      rgba(248, 243, 237, 0.94)
    );
}

.offers-inner {
  max-width: 650px;

  margin: 0 auto;
}

.offers-section h2 {
  margin: 12px 0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 42px;
  font-weight: 600;

  line-height: 1;
}

.offers-section p:not(.eyebrow) {
  max-width: 500px;

  margin: 0 auto 25px;

  color: var(--muted);

  font-size: 11px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  color: #eeeae6;

  background: var(--dark);
}

.footer-main {
  width: 100%;
  max-width: var(--container);

  margin: 0 auto;

  padding: 42px 20px 35px;

  display: grid;

  grid-template-columns: 1.7fr repeat(4, 1fr);

  gap: 35px;
}


/* Footer logo */

.footer-logo {
  width: auto;
  height: auto;

  margin-bottom: 12px;

  display: inline-flex;

  color: #f2eee9;
}

.footer-logo-image {
  width: 135px;
  height: 85px;

  object-fit: contain;

  background: #fff;
}


/* Footer text */

.footer-brand > p {
  color: #aaa6a1;

  font-size: 9px;
  line-height: 1.7;
}

.footer h4 {
  margin-bottom: 13px;

  color: #f3efeb;

  font-size: 9px;
  letter-spacing: 0.2px;
}

.footer-main > div:not(.footer-brand) a {
  display: block;

  margin-bottom: 8px;

  color: #aaa6a1;

  font-size: 9px;

  transition: color var(--transition);
}

.footer-main > div:not(.footer-brand) a:hover {
  color: #fff;
}

.footer-main p {
  margin-bottom: 10px;

  color: #aaa6a1;

  font-size: 9px;

  line-height: 1.55;
}

.footer-main p i {
  width: 17px;

  color: #d5c1ac;
}


/* Social icons */

.socials {
  display: flex;

  gap: 15px;

  margin-top: 16px;
}

.socials a {
  color: #e8e2dc;

  font-size: 13px;

  transition:
    color var(--transition),
    transform var(--transition);
}

.socials a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  min-height: 48px;

  padding: 0 max(5%, calc((100% - 1160px) / 2));

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #8f8b87;

  border-top: 1px solid #3b3c3d;

  font-size: 8px;
}

.payments {
  display: flex;

  align-items: center;

  gap: 7px;
}

.payments span {
  padding: 3px 7px;

  border-radius: 3px;

  color: #222;
  background: #fff;

  font-size: 7px;
  font-weight: 700;
}


/* =========================================================
   MODALS
   ========================================================= */

.modal {
  position: fixed;

  inset: 0;

  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;

  z-index: 5000;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 100%;
  max-width: 420px;

  padding: 45px 35px 35px;

  position: relative;

  text-align: center;

  background: #fff;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

  transform: translateY(15px);

  transition: transform 0.25s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-content h2 {
  margin-bottom: 10px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 36px;
}

.modal-content p {
  margin-bottom: 25px;

  color: var(--muted);

  font-size: 11px;
}

.modal-close {
  width: 35px;
  height: 35px;

  position: absolute;

  top: 12px;
  right: 12px;

  color: #555;

  font-size: 18px;
}

.modal-close:hover {
  color: var(--gold-dark);
}

.modal-button {
  min-width: 150px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .header {
    padding: 0 3%;
  }

  .brand {
    width: 150px;
    flex-basis: 150px;
  }

  .logo-image {
    width: 135px;
    height: 90px;
  }

  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 10px;
  }

  .nav-actions {
    width: 125px;
    flex-basis: 125px;
    gap: 12px;
  }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 950px) {

  .category-grid {
    grid-template-columns: repeat(2, 1fr);

    row-gap: 35px;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(-n + 2) {
    border-bottom: 1px solid #e6ddd4;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  /* Announcement */

  .announcement {
    min-height: 32px;

    padding: 0 15px;

    justify-content: center;
  }

  .announcement-center,
  .announcement-right {
    display: none;
  }


  /* Header */

  .header {
    height: 75px;

    padding: 0 15px;

    justify-content: space-between;
  }


  /* Logo */

  .brand {
    width: auto;
    height: 75px;

    flex: 0 0 auto;

    justify-content: flex-start;
  }

  .logo-image {
    width: 115px;
    height: 68px;

    max-width: 115px;
    max-height: 68px;
  }


  /* Mobile hamburger */

  .menu-toggle {
    display: flex;

    margin-left: auto;
    margin-right: 12px;
  }


  /* Navigation */

  .nav {
    display: none;

    width: 100%;
    height: auto;

    position: absolute;

    top: 75px;
    left: 0;

    margin: 0;
    padding: 8px 20px 15px;

    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    gap: 0;

    background: #fff;

    border-top: 1px solid #eee8e2;
    border-bottom: 1px solid #e5ddd5;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);

    z-index: 1050;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    height: 48px;

    flex: none;

    display: flex;
    align-items: center;

    border-bottom: 1px solid #f0ebe6;

    font-size: 11px;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav a.active::after {
    display: none;
  }


  /* Header icons */

  .nav-actions {
    width: auto;

    flex: 0 0 auto;

    gap: 7px;
  }

  .nav-actions button {
    width: 29px;
    height: 35px;

    font-size: 17px;
  }

  /* Hide search on mobile to make room */

  #searchBtn {
    display: none;
  }


  /* Hero */

  .hero {
    min-height: auto;

    display: block;
  }

  .hero-copy {
    padding: 55px 8% 45px;
  }

  .hero h1 {
    font-size: 57px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-art {
    width: 100%;
    height: 330px;
  }


  /* Categories */

  .section {
    padding: 45px 20px;
  }

  .category-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .category-image {
    height: 380px;
  }


  /* Benefits */

  .benefits {
    grid-template-columns: 1fr;

    padding: 10px 20px;
  }

  .benefit,
  .benefit:nth-child(2) {
    min-height: 85px;

    border-right: 0;
    border-bottom: 1px solid #e6ddd4;
  }

  .benefit:last-child {
    border-bottom: 0;
  }


  /* Newsletter */

  .newsletter {
    display: block;

    padding: 40px 20px;
  }

  .newsletter h2 {
    font-size: 30px;
  }

  .subscribe {
    width: 100%;

    margin-top: 22px;
  }


  /* Offers */

  .offers-section {
    padding: 55px 20px;
  }

  .offers-section h2 {
    font-size: 36px;
  }


  /* Footer */

  .footer-main {
    grid-template-columns: repeat(2, 1fr);

    gap: 30px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 15px 20px;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

  .announcement {
    font-size: 9px;
  }


  /* Header */

  .header {
    height: 70px;

    padding: 0 12px;
  }

  .brand {
    height: 70px;
  }

  .logo-image {
    width: 100px;
    height: 62px;

    max-width: 100px;
  }


  /* Hamburger */

  .menu-toggle {
    width: 38px;
    height: 38px;

    margin-right: 4px;
  }


  /* Mobile nav */

  .nav {
    top: 70px;
  }


  /* Icons */

  .nav-actions {
    gap: 3px;
  }

  .nav-actions button {
    width: 27px;
    font-size: 16px;
  }


  /* Hero */

  .hero-copy {
    padding: 48px 20px 40px;
  }

  .hero h1 {
    font-size: 50px;

    letter-spacing: -1.5px;
  }

  .hero-art {
    height: 300px;
  }


  /* Category */

  .category-image {
    height: 320px;
  }

  .section-heading h2 {
    font-size: 33px;
  }


  /* Newsletter */

  .newsletter h2 {
    font-size: 27px;
  }

  .subscribe {
    height: auto;

    flex-direction: column;

    border: 0;

    gap: 8px;
  }

  .subscribe input {
    width: 100%;
    height: 42px;

    border: 1px solid var(--line);
  }

  .subscribe button {
    width: 100%;
    height: 42px;
  }


  /* Footer */

  .footer-main {
    grid-template-columns: 1fr;

    padding: 40px 20px 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: auto;

    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
  }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

  .logo-image {
    width: 90px;
    max-width: 90px;
  }

  .menu-toggle {
    margin-right: 0;
  }

  .nav-actions {
    gap: 0;
  }

  .nav-actions button {
    width: 25px;
    font-size: 15px;
  }

  .hero h1 {
    font-size: 45px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
/* FINAL RESPONSIVE FIXES */
.header{min-height:82px;height:82px;padding:0 4.5%;}
.brand{height:82px;width:150px;flex:0 0 150px;align-items:center;}
.logo-image{width:125px;height:68px;max-width:125px;max-height:68px;object-fit:contain;}
.nav{min-width:0;}
.menu-toggle{display:none;}
@media (max-width: 900px){
 .header{height:75px;min-height:75px;padding:0 18px;}
 .brand{height:75px;width:125px;flex:0 0 125px;}
 .logo-image{width:105px;height:60px;max-width:105px;max-height:60px;}
 .menu-toggle{display:flex;margin-left:auto;position:relative;z-index:1200;width:42px;height:42px;align-items:center;justify-content:center;}
 .nav{display:none;position:absolute;top:75px;left:0;right:0;width:100%;height:auto;margin:0;padding:8px 18px 16px;flex-direction:column;align-items:stretch;background:#fff;border-top:1px solid #eee8e2;box-shadow:0 12px 30px rgba(0,0,0,.09);z-index:1100;}
 .nav.open{display:flex;}
 .nav a{height:46px;width:100%;border-bottom:1px solid #f0ebe6;}
 .nav-actions{margin-left:auto;}
}
@media (max-width:600px){
 .announcement-center,.announcement-right{display:none;}
 .announcement{justify-content:center;min-height:32px;}
 .hero-art{height:300px;}
}
