@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alice&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #580A00;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #580A00;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 860px;
}

.container--wide {
  max-width: 1440px;
}

body {
  overflow-x: hidden;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

@media (min-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.site-header {
  position: relative;
  background-color: #580A00;
  border-bottom: 1px solid rgba(242, 239, 233, 0.1);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.site-header__nav--left {
  justify-self: start;
}
.site-header__nav--right {
  display: flex;
  align-items: center;
}
.site-header__nav #menu-menu-left,
.site-header__nav #menu-menu-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav #menu-menu-left li,
.site-header__nav #menu-menu-right li {
  list-style: none;
}
.site-header__nav a {
  font-size: 0.875rem;
  font-family: "Alice", serif;
  font-weight: 500;
  color: #F2EFE9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.2s ease;
}
.site-header__nav a:hover {
  color: #DAAF30;
}
.site-header .custom-logo-link {
  justify-self: center;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: #F2EFE9;
  text-transform: lowercase;
}
.site-header .custom-logo-link img {
  width: 103px;
  height: 104px;
}
@media (max-width: 768px) {
  .site-header .custom-logo-link img {
    width: 70px;
    height: 70px;
  }
}
.site-header__right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1.5rem;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header__icon {
  color: #F2EFE9;
  transition: all 0.2s ease;
}
.site-header__icon:hover {
  color: #DAAF30;
}
.site-header__cart-count {
  font-size: 0.75rem;
  margin-left: 4px;
  color: #F2EFE9;
}
.site-header__search {
  display: flex;
  align-items: center;
}
.site-header__search-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #F2EFE9;
  transition: all 0.2s ease;
}
.site-header__search-toggle:hover {
  color: #DAAF30;
}
.site-header__search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #580A00;
  border-top: 1px solid rgba(242, 239, 233, 0.1);
  border-bottom: 1px solid rgba(242, 239, 233, 0.1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
  z-index: 100;
}
.site-header__search-bar.is-open {
  max-height: 80px;
  opacity: 1;
}
.site-header__search-bar form {
  display: flex;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 12px 16px;
  gap: 8px;
}
.site-header__search-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(242, 239, 233, 0.35);
  outline: none;
  padding: 6px 4px;
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #F2EFE9;
}
.site-header__search-input::placeholder {
  color: rgba(242, 239, 233, 0.5);
}
.site-header__search-input::-webkit-search-decoration, .site-header__search-input::-webkit-search-cancel-button {
  display: none;
}
.site-header__search-submit {
  background: none;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
  color: #F2EFE9;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.15s ease;
}
.site-header__search-submit:hover {
  color: #DAAF30;
}
.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #F2EFE9;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.site-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.site-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.site-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.site-header__mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #580A00;
  border-top: 1px solid rgba(242, 239, 233, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  opacity: 0;
  z-index: 100;
}
.site-header__mobile-nav.is-open {
  max-height: 100vh;
  opacity: 1;
}
.site-header__mobile-nav .site-header__menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__mobile-nav .site-header__menu li {
  list-style: none;
  border-bottom: 1px solid rgba(242, 239, 233, 0.08);
}
.site-header__mobile-nav .site-header__menu li:last-child {
  border-bottom: none;
}
.site-header__mobile-nav .site-header__menu a {
  display: block;
  padding: 14px 24px;
  font-size: 0.875rem;
  font-family: "Alice", serif;
  font-weight: 500;
  color: #F2EFE9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.site-header__mobile-nav .site-header__menu a:hover {
  color: #DAAF30;
  background: rgba(242, 239, 233, 0.04);
}
.site-header__mobile-nav__divider {
  height: 1px;
  background: rgba(242, 239, 233, 0.15);
  margin: 0;
}
.site-header__mobile-nav__inner {
  padding: 8px 0 16px;
}
@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto auto;
    grid-template-rows: 1;
    gap: 12px;
  }
  .site-header__nav--left, .site-header__nav--right {
    display: none;
  }
  .site-header__hamburger {
    display: flex;
  }
  .site-header .custom-logo-link {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .site-header__right {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .site-header__hamburger {
    display: flex;
    grid-column: 4;
    grid-row: 1;
  }
  .site-header__mobile-nav {
    display: block;
  }
}

.footer-topbar {
  background-color: #580A00;
}
@media (min-width: 1024px) {
  .footer-topbar {
    padding: 102px 0;
  }
}
.footer-topbar {
  padding: 35px 0;
}
.footer-topbar__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .footer-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.footer-topbar__brand {
  flex: 0 0 220px;
}
.footer-topbar__brand img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .footer-topbar__brand {
    flex: unset;
    width: 80%;
  }
}
.footer-topbar__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  flex: 1;
  max-width: 900px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .footer-topbar__info {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-topbar__info {
    grid-template-columns: 1fr;
    margin-left: 0;
    max-width: 100%;
  }
}
.footer-topbar__col-heading {
  font-size: 20px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #FFF2D8;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer-topbar__col-heading {
    font-size: 1.094rem;
  }
}
.footer-topbar__col-text {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
  margin: 0;
  width: 100%;
  max-width: 196px;
}
@media (max-width: 768px) {
  .footer-topbar__col-text {
    font-size: 1.094rem;
    max-width: 100%;
  }
}

.footer-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #280804 0%, #580903 100%);
}
@media (min-width: 1024px) {
  .footer-main {
    padding: 102px 0;
  }
}
.footer-main {
  padding: 60px 0;
}
.footer-main__overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
  object-position: bottom right;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .site-footer__grid {
    padding-bottom: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .site-footer__grid > *:nth-child(3),
  .site-footer__grid > *:nth-child(4) {
    grid-column: 1/-1;
  }
}
.site-footer__heading {
  font-size: 1.25rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #FFF2D8;
  line-height: 1.2;
  letter-spacing: -0.046875rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .site-footer__heading {
    margin-bottom: 1rem;
  }
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__links li {
  margin: 0;
}
.site-footer__links a {
  font-size: 1.125rem;
  font-family: "Alice", serif;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__links a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__contact-block {
  margin-bottom: 1.5rem;
}
.site-footer__contact-block:last-child {
  margin-bottom: 0;
}
.site-footer__contact-label {
  font-size: 1.25rem;
  font-family: "Alice", serif;
  font-weight: 600;
  color: #FFF2D8;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.25rem;
}
.site-footer__contact-label {
  font-size: 1.25rem;
  font-family: "Alice", serif;
  font-weight: 600;
  color: #FFF2D8;
  margin-bottom: 0.25rem;
}
.site-footer__contact-value {
  display: block;
  font-size: 1.125rem;
  font-family: "Alice", serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
  overflow-wrap: break-word;
}
.site-footer__contact-value:hover {
  color: #ffffff;
}
.site-footer__contact-sub {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}
.site-footer__social-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .site-footer__social-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  transition: all 0.2s ease;
}
.site-footer__social-link img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}
.site-footer__payment {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-footer__payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}
.site-footer__payment-icon img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: cover;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 576px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.site-footer__copyright {
  font-size: 1rem;
  font-family: "Alice", serif;
  color: #FFF2D8;
  margin: 0;
}
.site-footer__credit {
  font-size: 1rem;
  font-family: "Alice", serif;
  color: #FFF2D8;
  margin: 0;
}
.site-footer__credit a {
  color: #B771FE;
  text-decoration: none;
  font-weight: 500;
}
.site-footer__credit a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.5rem;
  font-family: "Alice", serif;
  font-weight: 400;
  line-height: 1;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background-color: #580A00;
  color: #ffffff;
  border-color: #580A00;
}
.btn--primary:hover {
  background-color: #c1121f;
  border-color: #c1121f;
}
.btn--secondary {
  background-color: transparent;
  color: #580A00;
  border-color: #580A00;
}
.btn--secondary:hover {
  background-color: #580A00;
  color: #ffffff;
}
.btn--ghost {
  background-color: transparent;
  color: #e63946;
  border-color: transparent;
}
.btn--ghost:hover {
  background-color: rgba(230, 57, 70, 0.08);
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn--full {
  width: 100%;
}
.btn:disabled, .btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #580A00;
}
.form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #580A00;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.form__input:focus {
  outline: none;
  border-color: #e63946;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}
.form__input--error {
  border-color: #e63946;
}
.form__error {
  font-size: 0.75rem;
  color: #e63946;
}
.form__hint {
  font-size: 0.75rem;
  color: #4a4a4a;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
  background: #ffffff;
  border: 1px solid #e0e0e0;
}
.product-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #f8f8f8;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image {
  transform: scale(1.04);
}
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  background-color: #e63946;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card__body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  flex: 1;
  padding: 1rem;
  gap: 0.5rem;
}
.product-card__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.product-card__category {
  font-size: 0.875rem;
  color: #4a4a4a;
  font-weight: 400;
}
.product-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #580A00;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.product-card__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #580A00;
  margin-left: auto;
}
.product-card__price-original {
  font-size: 0.875rem;
  color: #4a4a4a;
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.product-card__footer {
  padding: 0 1rem 1rem;
}

.announcement-bar {
  background-color: #FFF2D8;
  border-bottom: 1px solid #e0e0e0;
}
.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 576px) {
  .announcement-bar__inner {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.announcement-bar__message {
  font-size: 1.25rem;
  font-family: "Alice", serif;
  color: #580A00;
  margin-bottom: 0;
}
.announcement-bar__message a {
  color: #4a4a4a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-bar__message a:hover {
  color: #580A00;
}
.announcement-bar__gold {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  font-family: "Alice", serif;
  flex-shrink: 0;
}
.announcement-bar__gold.is-loading {
  opacity: 0.5;
}
.announcement-bar__gold-block {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  align-items: center;
  padding: 10px;
}
.announcement-bar__gold-block:first-child {
  background: #F2EFE9;
  padding-right: 0;
  padding-left: 20px;
  font-size: 1.25rem;
}
.announcement-bar__gold-block:last-child {
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.announcement-bar__gold-block:last-child .announcement-bar__gold-label {
  width: 52px;
  line-height: 1.1;
}
@media (max-width: 576px) {
  .announcement-bar__gold-block:last-child .announcement-bar__gold-label {
    font-size: 0.875rem;
  }
}
.announcement-bar__gold-block:last-child .announcement-bar__gold-countdown {
  white-space: nowrap;
  margin-left: 20px;
}
.announcement-bar__gold-label {
  font-size: 0.875rem;
  color: #4a4a4a;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .announcement-bar__gold-label {
    font-size: 0.875rem;
  }
}
.announcement-bar__gold-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #580A00;
}
@media (max-width: 576px) {
  .announcement-bar__gold-price {
    font-size: 1rem;
  }
}
.announcement-bar__gold-arrow {
  color: #2a9d8f;
  display: flex;
  align-items: center;
  background: #F2EFE9;
  justify-content: center;
  padding: 20px;
  margin: 0;
}
.announcement-bar__gold-countdown {
  font-size: 1.125rem;
  font-weight: 700;
  color: #580A00;
}
@media (max-width: 576px) {
  .announcement-bar__gold-countdown {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .announcement-bar__inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .announcement-bar__gold {
    align-self: center;
    justify-content: center;
  }
  .announcement-bar__message {
    text-align: center;
    font-size: 1rem;
  }
}

.hero {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  background-image: var(--bg-desktop);
}
@media (max-width: 768px) {
  .hero {
    background-image: var(--bg-mobile);
    min-height: 80vh;
    align-items: end;
  }
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 480px;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .hero__content {
    max-width: 100%;
    gap: 1rem;
    padding: 30% 0 5%;
  }
}
.hero__heading {
  font-size: 75px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #FFF2D8;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.1rem;
}
@media (max-width: 768px) {
  .hero__heading {
    font-size: 50px;
    letter-spacing: -0.113rem;
    line-height: 1.1;
  }
}
.hero__heading--accent {
  color: #DAAF30;
}
.hero__subtext {
  font-size: 1.5rem;
  font-family: "Alice", serif;
  color: rgba(242, 239, 233, 0.8);
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .hero__subtext {
    font-size: 1.094rem;
  }
}
.hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero__ctas .btn--primary:hover {
  background-color: #ffffff;
  color: #580A00;
  border: 1px solid #F2EFE9;
}
@media (max-width: 768px) {
  .hero__ctas .btn--primary {
    font-size: 1rem;
  }
}
.hero__ctas .btn--secondary {
  background: #F2EFE9;
  color: #280804;
  font-family: "Alice", serif;
}
@media (max-width: 768px) {
  .hero__ctas .btn--secondary {
    font-size: 1rem;
  }
}
.hero__ctas .btn--secondary:hover {
  color: #ffffff;
  background: #280804;
  border: 1px solid #F2EFE9;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero__action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}
.hero__action:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.featured-categories {
  background: #F2EFE9;
  padding: 60px 0 0 0;
}
@media (min-width: 1024px) {
  .featured-categories {
    padding: 102px 10px 60px 10px;
  }
}
.featured-categories .container {
  max-width: 1920px;
}

.featuredcat__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.featuredcat__content__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 600;
  letter-spacing: -0.066rem;
  line-height: 1.2;
  color: #580A00;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .featuredcat__content__heading {
    text-align: center;
    font-size: 1.563rem;
  }
}
.featuredcat__content__subheading {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #580A00;
  text-align: center;
  max-width: 716px;
  line-height: 1.3;
  margin-bottom: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .featuredcat__content__subheading {
    font-size: 1.094rem;
  }
}
.featuredcat__categories {
  width: 100%;
}
.featuredcat__categories__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}
.featuredcat__categories__grid::-webkit-scrollbar {
  display: none;
}
.featuredcat__categories__grid .featuredcat__item {
  flex: 0 0 calc(50% - 8px);
}
@media (min-width: 768px) {
  .featuredcat__categories__grid .featuredcat__item {
    flex: 0 0 calc(33.333% - 11px);
  }
}
@media (min-width: 1024px) {
  .featuredcat__categories__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    overflow: visible;
  }
  .featuredcat__categories__grid .featuredcat__item {
    flex: unset;
  }
}
.featuredcat__item {
  text-align: center;
}
.featuredcat__item__image {
  margin-bottom: 20px;
}
.featuredcat__item__image img {
  width: 100%;
  max-width: 260px;
  height: 328px;
  border-radius: 130px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .featuredcat__item__image img {
    height: 230px;
    border-radius: 130px;
  }
}
.featuredcat__item__name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}
.featuredcat__nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .featuredcat__nav {
    display: none;
  }
}
.featuredcat__nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #580A00;
  background: transparent;
  color: #580A00;
  cursor: pointer;
  transition: all 0.3s ease;
}
.featuredcat__nav__btn:hover {
  background: #580A00;
  color: #fff;
}

.craftsmanship-banner {
  position: relative;
  width: 100%;
  min-height: 40vh;
  padding: 100px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.craftsmanship-banner .container {
  position: relative;
  max-width: 900px;
}
.craftsmanship-banner .banner__title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -1.5px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  color: #580A00;
  margin-bottom: 20px;
  line-height: 55px;
}
.craftsmanship-banner .banner__subtext {
  font-size: 1.25rem;
  font-family: "Alice", serif;
  line-height: 23px;
  color: #580A00;
  max-width: 730px;
  margin: 0 auto;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .craftsmanship-banner {
    padding: 50px 10px;
  }
  .craftsmanship-banner .banner__title {
    font-size: 1.563rem;
    line-height: 30px;
  }
  .craftsmanship-banner .banner__subtext {
    font-size: 1.094rem;
    line-height: 1.4;
  }
}

.craftsmanship-video-section {
  position: relative;
  width: 100%;
  height: 836px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.craftsmanship-video-section .video-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 0;
}
.craftsmanship-video-section .video-wrapper > div {
  width: 100%;
  height: 100%;
}
.craftsmanship-video-section .video-wrapper iframe,
.craftsmanship-video-section .video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}
.craftsmanship-video-section .video-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  padding: 10px 20px;
  border-radius: 999px;
  z-index: 10;
}
.craftsmanship-video-section .video-controls button {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  transition: opacity 0.2s ease;
}
.craftsmanship-video-section .video-controls button:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .craftsmanship-video-section {
    height: 100%;
  }
  .craftsmanship-video-section .video-controls {
    bottom: 16px;
    padding: 8px 16px;
  }
  .craftsmanship-video-section .video-controls button {
    font-size: 14px;
  }
}

.process-section {
  background: #F2EFE9;
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .process-section {
    padding: 102px 0;
  }
}

.processstep__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.processstep__content__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
}
@media (max-width: 768px) {
  .processstep__content__heading {
    font-size: 1.563rem;
  }
}
.processstep__content__heading {
  font-weight: 700;
  color: #580A00;
  line-height: 1.2;
  letter-spacing: -1.05px;
  text-transform: uppercase;
}
.processstep__content__subheading {
  font-family: "Alice", serif;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .processstep__content__subheading {
    font-size: 1.094rem;
    line-height: 1.4;
  }
}
.processstep__content__subheading {
  font-weight: 300;
  color: #580A00;
  text-align: center;
  max-width: 814px;
  width: 100%;
  line-height: 1.4;
  margin: 12px 0;
}

.process-items {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}
@media (min-width: 1024px) {
  .process-items {
    gap: 100px;
    margin-top: 80px;
  }
}

.process-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .process-item {
    grid-template-columns: 1fr 1fr;
    gap: 190px;
  }
  .process-item .process-item__image-wrap {
    order: 1;
  }
  .process-item .process-item__body {
    order: 2;
  }
  .process-item--reversed .process-item__image-wrap {
    order: 2;
  }
  .process-item--reversed .process-item__body {
    order: 1;
  }
}
.process-item__image-wrap {
  width: 100%;
  aspect-ratio: 720/696;
  overflow: hidden;
}
.process-item__image-wrap:hover .process-item__image {
  transform: scale(1.08);
}
.process-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.process-item__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  height: 100%;
}
.process-item__step {
  font-family: "Alice", serif;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .process-item__step {
    font-size: 1.094rem;
  }
}
.process-item__step {
  font-weight: 400;
  color: #707070;
  text-transform: uppercase;
  opacity: 0.6;
}
.process-item__title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
}
@media (max-width: 768px) {
  .process-item__title {
    font-size: 1.563rem;
  }
}
.process-item__title {
  font-weight: 700;
  color: #580A00;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.process-item__description {
  font-family: "Playfair Display", serif;
  font-size: 1.563rem;
}
@media (max-width: 768px) {
  .process-item__description {
    font-size: 1.094rem;
  }
}
.process-item__description {
  font-weight: 300;
  line-height: 1.4;
  color: #580A00;
  margin: 0;
}

.whm {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #280804 0%, #580903 100%);
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .whm {
    padding: 102px 0;
  }
}
.whm__bg-overlay {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: left;
  background-size: auto 65%;
}
@media (max-width: 1024px) {
  .whm__bg-overlay {
    background-size: auto 40%;
    background-position: left top;
  }
}
.whm__bg-overlay {
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}
.whm__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0px 40px;
}
@media (max-width: 1024px) {
  .whm__inner {
    gap: 20px;
    padding: 0px 30px;
  }
}
@media (max-width: 768px) {
  .whm__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.whm__left {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .whm__left {
    max-width: 100%;
  }
}
.whm__heading {
  font-family: "Playfair Display", serif;
  font-size: 35px;
}
@media (max-width: 768px) {
  .whm__heading {
    font-size: 1.563rem;
  }
}
.whm__heading {
  font-weight: 700;
  letter-spacing: -1.05px;
  text-transform: uppercase;
  color: #FFF2D8;
  margin: 0 0 12px;
  line-height: 1.2;
}
.whm__subtext {
  font-family: "Alice", serif;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .whm__subtext {
    font-size: 1.094rem;
  }
}
.whm__subtext {
  line-height: 1.4;
  color: #FFF2D8;
  margin: 0 0 36px;
}
.whm__points {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 768px) {
  .whm__points {
    gap: 28px;
  }
}
.whm__point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.whm__point-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #c9a84c;
  margin-top: 1px;
}
.whm__point-icon svg {
  width: 22px;
  height: 22px;
  stroke: #c9a84c;
}
.whm__point-icon svg rect {
  rx: 3px;
}
.whm__point-body {
  flex: 1;
  min-width: 0;
}
.whm__point-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .whm__point-title {
    font-size: 1.25rem;
  }
}
.whm__point-title {
  font-weight: 700;
  margin: 0 0 10px;
  color: #FFF2D8;
  line-height: 1.2;
}
.whm__point-desc {
  font-family: "Alice", serif;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .whm__point-desc {
    font-size: 1.094rem;
  }
}
.whm__point-desc {
  line-height: 1.4;
  color: #FFF2D8;
  margin: 0;
}
.whm__ctas {
  display: flex;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .whm__ctas {
    margin-top: 5px;
  }
}
.whm__ctas .btn--primary {
  color: #580A00;
  border: 1px solid rgba(255, 242, 216, 0.8);
  padding: 10px 20px;
  color: rgba(255, 242, 216, 0.8);
}
.whm__ctas .btn--primary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}
@media (max-width: 1024px) {
  .whm__ctas .btn--primary {
    font-size: 1.094rem;
  }
}
.whm__right {
  flex: 1;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .whm__right {
    max-width: 100%;
  }
}
.whm__image {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .whm__image {
    width: 100%;
  }
}

.craftsmanship-gallery-section {
  background: #F2EFE9;
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .craftsmanship-gallery-section {
    padding: 102px 10px;
  }
}
.craftsmanship-gallery-section .container {
  max-width: 1655px;
}
.craftsmanship-gallery-section .craftsmanship-gallery__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.craftsmanship-gallery-section .craftsmanship-gallery__content__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #580A00;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .craftsmanship-gallery-section .craftsmanship-gallery__content__heading {
    font-size: 1.563rem;
  }
}
.craftsmanship-gallery-section .craftsmanship-gallery__content__subheading {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #580A00;
  text-align: center;
  max-width: 962px;
  line-height: 1.2;
  margin: 15px 0 10px 0;
}
@media (max-width: 768px) {
  .craftsmanship-gallery-section .craftsmanship-gallery__content__subheading {
    font-size: 1.094rem;
  }
}
.craftsmanship-gallery-section .craftsmanship-gallery {
  /* GRID */
}
.craftsmanship-gallery-section .craftsmanship-gallery__images {
  display: grid;
  gap: 1rem;
  margin-top: 40px;
  grid-template-columns: 1fr;
  grid-auto-rows: 200px;
}
@media (min-width: 768px) {
  .craftsmanship-gallery-section .craftsmanship-gallery__images {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }
}
@media (min-width: 1024px) {
  .craftsmanship-gallery-section .craftsmanship-gallery__images {
    grid-template-columns: 568fr 568fr 519fr;
    grid-template-rows: 231px calc(113px - 1rem) 344px;
    grid-auto-rows: unset;
  }
}
.craftsmanship-gallery-section .craftsmanship-gallery__image-wrap {
  overflow: hidden;
  border-radius: 8px;
}
.craftsmanship-gallery-section .craftsmanship-gallery__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.craftsmanship-gallery-section .craftsmanship-gallery__image-wrap {
  /* Desktop masonry placement */
}
@media (min-width: 1024px) {
  .craftsmanship-gallery-section .craftsmanship-gallery__image-wrap.image-1 {
    grid-column: 1;
    grid-row: 1/3;
  }
  .craftsmanship-gallery-section .craftsmanship-gallery__image-wrap.image-2 {
    grid-column: 2;
    grid-row: 1/3;
  }
  .craftsmanship-gallery-section .craftsmanship-gallery__image-wrap.image-3 {
    grid-column: 3;
    grid-row: 1;
  }
  .craftsmanship-gallery-section .craftsmanship-gallery__image-wrap.image-4 {
    grid-column: 1;
    grid-row: 3;
  }
  .craftsmanship-gallery-section .craftsmanship-gallery__image-wrap.image-5 {
    grid-column: 2;
    grid-row: 3;
  }
  .craftsmanship-gallery-section .craftsmanship-gallery__image-wrap.image-6 {
    grid-column: 3;
    grid-row: 2/4;
  }
}
.craftsmanship-gallery-section .craftsmanship-gallery__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 1024px) {
  .craftsmanship-gallery-section .craftsmanship-gallery__cta {
    margin-top: 25px;
  }
}
.craftsmanship-gallery-section .craftsmanship-gallery__cta .btn--primary {
  color: #580A00;
  padding: 10px 20px;
  color: #FFFFFF;
}
.craftsmanship-gallery-section .craftsmanship-gallery__cta .btn--primary:hover {
  background-color: rgba(91, 3, 3, 0.902);
}
@media (max-width: 1024px) {
  .craftsmanship-gallery-section .craftsmanship-gallery__cta .btn--primary {
    font-size: 1.094rem;
  }
}

.best-sellers {
  background: #F2EFE9;
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .best-sellers {
    padding: 102px 10px;
  }
}
.best-sellers .container {
  max-width: 1920px;
}

.bestsellers__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.bestsellers__content__heading {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #580A00;
  text-transform: uppercase;
}
.bestsellers__slider {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bestsellers__slider::-webkit-scrollbar {
  display: none;
}
.bestsellers__slider .product-card {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .bestsellers__slider .product-card {
    flex-basis: calc(50% - 12px);
  }
}
@media (max-width: 576px) {
  .bestsellers__slider .product-card {
    flex-basis: 80%;
  }
}
.bestsellers__nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.bestsellers__nav__btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #4a4a4a;
  cursor: pointer;
  padding: 4px 10px;
  transition: all 0.2s ease;
  line-height: 1;
}
.bestsellers__nav__btn:hover {
  color: #580A00;
}
.bestsellers__nav__btn--prev {
  color: #7d7d7d;
}
.bestsellers__cta .btn--primary {
  display: inline-block;
  padding: 14px 48px;
  background-color: #580A00;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s ease;
}
.bestsellers__cta .btn--primary:hover {
  background-color: #280804;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.product-card__image-wrap {
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #fff;
  transition: opacity 0.3s ease;
}
.product-card__image--primary {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.product-card__image--hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  padding: 20px;
}
.product-card:hover .product-card__image--primary {
  opacity: 0;
}
.product-card:hover .product-card__image--hover {
  opacity: 1;
}
.product-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 12px;
}
.product-card__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.product-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #580A00;
  margin: 0;
  line-height: 1.3;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
}
.product-card__category {
  font-family: "Alice", serif;
  font-size: 1.094rem;
  color: #4a4a4a;
  line-height: 1.3;
}
.product-card__price {
  font-family: "Alice", serif;
  font-size: 1.563rem;
  font-weight: 600;
  color: #580A00;
  white-space: nowrap;
  flex-shrink: 0;
}

.craftsmanship-page-banner {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-image: var(--bg-desktop);
}
@media (max-width: 768px) {
  .craftsmanship-page-banner {
    background-image: var(--bg-mobile);
    min-height: 100vh;
    align-items: start;
  }
  .craftsmanship-page-banner__content {
    text-align: center;
    align-items: center;
  }
}
.craftsmanship-page-banner .container {
  position: relative;
  z-index: 2;
}
.craftsmanship-page-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  padding: 4rem 0;
}
.craftsmanship-page-banner__heading {
  font-size: 60px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #FFF2D8;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1.6px;
}
.craftsmanship-page-banner__subheading {
  font-size: 1.563rem;
  font-family: "Alice", serif;
  color: #FFF2D8;
  line-height: 1.4;
  margin-bottom: 0;
}
.craftsmanship-page-banner__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.craftsmanship-page-banner__cta .btn--primary:hover {
  background-color: rgba(91, 3, 3, 0.902);
}
@media (max-width: 1024px) {
  .craftsmanship-page-banner__cta .btn--primary {
    font-size: 1.094rem;
  }
}
@media (max-width: 768px) {
  .craftsmanship-page-banner__heading {
    font-size: 2.188rem;
    line-height: 1.2;
  }
  .craftsmanship-page-banner__subheading {
    font-size: 1.094rem;
  }
}

.about-hero {
  background: #F2EFE9;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .about-hero {
    padding: 90px 0;
  }
}
.about-hero {
  /* ========================
     HERO CONTENT
  ======================== */
}
.about-hero__content {
  text-align: center;
  margin-bottom: 40px;
}
.about-hero__heading {
  font-size: 70px;
  font-weight: 400;
  color: #580A00;
  font-family: "Playfair Display", serif;
  margin: 0 auto;
  max-width: 828px;
}
@media (max-width: 768px) {
  .about-hero__heading {
    font-size: 40px;
    width: 100%;
  }
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero {
  /* ========================
     VIDEO AREA
  ======================== */
}
.about-hero__video-area {
  position: relative;
  overflow: visible;
}
.about-hero__video-wrapper {
  width: 243px;
  height: 271px;
  position: relative;
  /* CENTERED FROM START */
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  transition: width 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.7s ease;
  cursor: pointer;
}
.about-hero__video-wrapper video,
.about-hero__video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-hero {
  /* ========================
     PERFECT CENTER EXPANSION
  ======================== */
}
.about-hero__video-wrapper:hover {
  width: 100vw;
  height: 520px;
}
.about-hero {
  /* ========================
     DESCRIPTION AREA
  ======================== */
}
.about-hero .about-hero__subheading {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  color: #580A00;
  line-height: 1.2;
  letter-spacing: -0.075rem;
}
.about-hero__description {
  text-align: center;
  max-width: 1266px;
  margin: 60px auto 0 auto;
}
.about-hero__description p {
  color: #30302E;
  font-family: "Alice", serif;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 20px;
}
.about-hero__ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .about-hero__ctas {
    margin-top: 5px;
  }
}
.about-hero__ctas .btn--primary {
  color: rgba(255, 242, 216, 0.8);
  border: 1px solid rgba(255, 242, 216, 0.8);
  padding: 10px 20px;
}
.about-hero__ctas .btn--primary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #580A00;
  border-color: #580A00;
}
@media (max-width: 1024px) {
  .about-hero__ctas .btn--primary {
    font-size: 1.094rem;
  }
}

.about-our-values-section {
  background: #F2EFE9;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .about-our-values-section {
    padding-bottom: 102px;
  }
}
.about-our-values-section .about-our-values {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-our-values-section .about-our-values {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-our-values-section .about-our-values__image img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 786px/617px;
}
.about-our-values-section .about-our-values__content {
  padding-right: 10px;
}
@media (max-width: 1024px) {
  .about-our-values-section .about-our-values__content {
    padding-right: 0;
  }
}
.about-our-values-section .about-our-values__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #580A00;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .about-our-values-section .about-our-values__heading {
    font-size: 1.563rem;
  }
}
.about-our-values-section .about-our-values__subtext {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #580A00;
  line-height: 1.2;
  font-family: "Alice", serif;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .about-our-values-section .about-our-values__subtext {
    font-size: 1.094rem;
  }
}
.about-our-values-section .about-our-values__divider {
  border: none;
  border-top: 1px solid rgba(218, 175, 48, 0.4);
  margin: 25px 0 25px;
}
.about-our-values-section .about-our-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 40px;
}
@media (max-width: 576px) {
  .about-our-values-section .about-our-values__grid {
    grid-template-columns: 1fr;
  }
}
.about-our-values-section .about-our-values__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 16px;
  align-items: start;
}
.about-our-values-section .about-our-values__icon {
  width: 40px;
  height: 40px;
}
.about-our-values-section .about-our-values__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-our-values-section .about-our-values__title {
  grid-column: 2;
  font-family: "Playfair Display", serif;
  font-size: 1.563rem;
  font-weight: 700;
  color: #580A00;
  margin-bottom: 6px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .about-our-values-section .about-our-values__title {
    font-size: 1.563rem;
  }
}
.about-our-values-section .about-our-values__description {
  grid-column: 2;
  font-size: 1.125rem;
  line-height: 1.2;
  font-family: "Alice", serif;
  color: #580A00;
}
@media (max-width: 768px) {
  .about-our-values-section .about-our-values__description {
    font-size: 1.094rem;
  }
}
.about-our-values-section .about-our-values__cta {
  display: flex;
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 1024px) {
  .about-our-values-section .about-our-values__cta {
    margin-top: 25px;
  }
}
.about-our-values-section .about-our-values__cta .btn--primary {
  color: #580A00;
  background-color: transparent;
  border: 1px solid #580A00;
  padding: 10px 20px;
  color: #580A00;
}
.about-our-values-section .about-our-values__cta .btn--primary:hover {
  background: #580A00;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .about-our-values-section .about-our-values__cta .btn--primary {
    font-size: 1.094rem;
  }
}

.visit-store {
  position: relative;
}
.visit-store::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: #F2EFE9;
  z-index: 0;
}
.visit-store__top, .visit-store__bottom {
  position: relative;
  z-index: 1;
}
.visit-store__top {
  background: linear-gradient(180deg, #1e0502 0%, #5c0a03 100%);
  padding: 70px 20px 220px;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .visit-store__top {
    padding: 50px 20px 170px;
  }
}
@media (max-width: 576px) {
  .visit-store__top {
    padding: 40px 16px 140px;
  }
}
.visit-store__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFF2D8;
  margin-bottom: 22px;
  letter-spacing: -0.066rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .visit-store__heading {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .visit-store__heading {
    font-size: 22px;
  }
}
.visit-store__desc {
  max-width: 992px;
  margin: 0 auto 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "Alice", serif;
  color: #FFF2D8;
}
.visit-store__address {
  font-size: 1.563rem;
  color: #FFF2D8;
  margin-top: 16px;
  font-family: "Alice", serif;
}
@media (max-width: 768px) {
  .visit-store__address {
    font-size: 1.094rem;
  }
}
.visit-store__address span {
  color: #DAAF30;
  font-weight: 600;
}
.visit-store__bottom {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .visit-store__bottom {
    padding-bottom: 60px;
  }
}
.visit-store__image-wrapper {
  position: relative;
  z-index: 2;
  width: 88%;
  margin: -160px auto 0;
}
@media (max-width: 768px) {
  .visit-store__image-wrapper {
    width: 94%;
    margin-top: -130px;
  }
}
@media (max-width: 576px) {
  .visit-store__image-wrapper {
    width: 100%;
    margin-top: -100px;
  }
}
.visit-store__image-wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.visit-store__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.25) 35%, transparent 70%);
}
.visit-store__btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: "Alice", serif;
  padding: 13px 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  line-height: 1.2;
  text-decoration: none;
  font-size: 1.25rem;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.visit-store__btn:hover {
  background: #fff;
  color: #1a0202;
  border-color: #fff;
}
@media (max-width: 768px) {
  .visit-store__btn {
    font-size: 13px;
    padding: 11px 32px;
    bottom: 28px;
  }
}
@media (max-width: 576px) {
  .visit-store__btn {
    font-size: 12px;
    padding: 10px 24px;
    bottom: 20px;
  }
}

.investment-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7.6;
  padding: 60px 120px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  background-image: var(--bg-desktop);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.investment-banner .container {
  position: relative;
  max-width: 900px;
}
.investment-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.investment-banner__heading {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -1.5px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  color: #DAAF30;
  line-height: 55px;
  padding-top: 20px;
  margin-bottom: 16px;
}
.investment-banner__subtext {
  font-size: 1.25rem;
  font-family: "Alice", serif;
  line-height: 23px;
  color: #FFF2D8;
  max-width: 970px;
  margin: 0 auto;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .investment-banner {
    aspect-ratio: unset;
    height: auto;
    padding: 0;
    background-image: var(--bg-mobile);
    background-size: 100% auto;
    background-position: top center;
    padding-bottom: 153.8461538462%;
  }
  .investment-banner__content {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    padding: 0 20px;
  }
  .investment-banner__heading {
    font-size: 1.563rem;
    line-height: 30px;
  }
  .investment-banner__subtext {
    font-size: 1.094rem;
    line-height: 1.4;
  }
}

.investment-valued-section {
  background: #ffffff;
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .investment-valued-section {
    padding: 102px 0;
  }
}
.investment-valued-section .container {
  max-width: 1620px;
}
.investment-valued-section .investment-valued__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.investment-valued-section .investment-valued__content__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #580A00;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .investment-valued-section .investment-valued__content__heading {
    font-size: 1.563rem;
  }
}
.investment-valued-section .investment-valued__content__subheading {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #580A00;
  text-align: center;
  max-width: 962px;
  margin: 20px 0;
  line-height: 1.2;
}
.investment-valued-section .investment-valued__content__subheading p {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  margin: 0 0 1rem 0;
}
.investment-valued-section .investment-valued__content__subheading p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .investment-valued-section .investment-valued__content__subheading {
    font-size: 1.094rem;
  }
}
.investment-valued-section .investment-valued__jewellery-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
}
.investment-valued-section .investment-valued__jewellery-content__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #580A00;
  text-transform: uppercase;
}
.investment-valued-section .investment-valued__jewellery-content__heading p {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  margin: 0 0 1rem 0;
}
.investment-valued-section .investment-valued__jewellery-content__heading p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .investment-valued-section .investment-valued__jewellery-content__heading {
    font-size: 1.563rem;
  }
}
.investment-valued-section .investment-valued__jewellery-content__subheading {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #580A00;
  text-align: center;
  max-width: 962px;
  margin-top: 12px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .investment-valued-section .investment-valued__jewellery-content__subheading {
    font-size: 1.094rem;
  }
}
.investment-valued-section .investment-valued__images {
  margin-top: 40px;
  width: 100%;
  display: grid;
  place-items: center;
  gap: clamp(16px, 2vw, 48px);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .investment-valued-section .investment-valued__images {
    grid-template-columns: minmax(280px, 519px) minmax(320px, 489px) minmax(280px, 519px);
    align-items: center;
  }
}
.investment-valued-section .investment-valued__image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.investment-valued-section .investment-valued__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.investment-valued-section .investment-valued__image-wrap.image-1 {
  max-width: 519px;
}
.investment-valued-section .investment-valued__image-wrap.image-1 img {
  aspect-ratio: 519/450;
}
.investment-valued-section .investment-valued__image-wrap.image-2 {
  max-width: 429px;
  margin: 0 auto;
}
.investment-valued-section .investment-valued__image-wrap.image-2 img {
  aspect-ratio: 489/654;
}
.investment-valued-section .investment-valued__image-wrap.image-3 {
  max-width: 519px;
}
.investment-valued-section .investment-valued__image-wrap.image-3 img {
  aspect-ratio: 519/450;
}

.investment-offer-section {
  background-color: #580A00;
  padding: 102px 0;
}
.investment-offer-section__content {
  text-align: center;
  margin-bottom: 60px;
}
.investment-offer-section__content__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #FFF2D8;
  text-transform: uppercase;
  letter-spacing: -0.066em;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .investment-offer-section__content__heading {
    font-size: 1.563rem;
  }
}
.investment-offer-section__points {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  text-align: center;
}
.investment-offer-section__point {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.investment-offer-section__point-image {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
.investment-offer-section__point-image img {
  width: 162px;
  height: auto;
  object-fit: contain;
}
.investment-offer-section__point-title {
  font-family: "Playfair Display", serif;
  font-size: 1.563rem;
  font-weight: 600;
  color: #FFF2D8;
  margin-bottom: 12px;
}
.investment-offer-section__point-description {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #FFF2D8;
  margin-top: 25px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .investment-offer-section__points {
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px;
  }
  .investment-offer-section__point {
    width: 100%;
  }
}
.investment-understanding-value-section {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .investment-understanding-value-section {
    padding: 102px 0;
  }
}
.investment-understanding-value-section .container {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
}
@media (max-width: 1024px) {
  .investment-understanding-value-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.investment-understanding-value-section__content__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #580A00;
  max-width: 369px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.066em;
}
@media (max-width: 768px) {
  .investment-understanding-value-section__content__heading {
    font-size: 1.563rem;
  }
}
.investment-understanding-value-section__content__description {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  max-width: 429px;
  font-weight: 300;
  color: #580A00;
  margin-top: 20px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .investment-understanding-value-section__content__description {
    font-size: 1.094rem;
  }
}
.investment-understanding-value-section__gallery {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 1024px) {
  .investment-understanding-value-section__gallery {
    justify-content: center;
  }
}
.investment-understanding-value-section__gallery-item {
  overflow: hidden;
}
.investment-understanding-value-section__gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}
.investment-understanding-value-section__gallery-item:last-child {
  transform: translateY(50px);
}
@media (max-width: 1024px) {
  .investment-understanding-value-section__gallery-item:last-child {
    transform: translateY(20px);
  }
}

.investment-faq-section {
  padding: 20px 0 60px 0;
}
@media (min-width: 1024px) {
  .investment-faq-section {
    padding: 20px 0 102px 0;
  }
}
.investment-faq-section__heading {
  font-family: "Playfair Display", serif;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
  letter-spacing: -0.066rem;
  color: #580A00;
}
@media (max-width: 768px) {
  .investment-faq-section__heading {
    font-size: 1.563rem;
  }
}
.investment-faq-section .investment-faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.investment-faq-section .investment-faq-item {
  background: #F2EFE9;
  padding: 25px 50px;
}
@media (max-width: 768px) {
  .investment-faq-section .investment-faq-item {
    padding: 20px;
  }
}
.investment-faq-section .investment-faq-item {
  overflow: hidden;
}
.investment-faq-section .investment-faq-item__header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.investment-faq-section .investment-faq-item__question {
  font-size: 1.563rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #580A00;
}
@media (max-width: 768px) {
  .investment-faq-section .investment-faq-item__question {
    font-size: 1.094rem;
    max-width: 250px;
  }
}
.investment-faq-section .investment-faq-item__icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #580A00;
  border-bottom: 2px solid #580A00;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.investment-faq-section .investment-faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.investment-faq-section .investment-faq-item__answer {
  font-family: "Alice", serif;
  margin-top: 15px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #580A00;
}
@media (max-width: 768px) {
  .investment-faq-section .investment-faq-item__answer {
    font-size: 1.094rem;
  }
}
.investment-faq-section .investment-faq-item.active .investment-faq-item__icon {
  transform: rotate(-135deg);
}
.investment-faq-section .investment-faq-item.active .investment-faq-item__content {
  max-height: 300px;
}

.investment-page-banner {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-image: var(--bg-desktop);
}
@media (max-width: 768px) {
  .investment-page-banner {
    background-image: var(--bg-mobile);
    min-height: 100vh;
    align-items: start;
  }
  .investment-page-banner__content {
    text-align: center;
    align-items: center;
  }
}
.investment-page-banner .container {
  position: relative;
  z-index: 2;
}
.investment-page-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  padding: 4rem 0;
}
.investment-page-banner__heading {
  font-size: 60px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #FFF2D8;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1.6px;
}
.investment-page-banner__subheading {
  font-size: 1.563rem;
  font-family: "Alice", serif;
  color: #FFF2D8;
  line-height: 1.4;
  margin-bottom: 0;
}
.investment-page-banner__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.investment-page-banner__cta .btn--primary:hover {
  background-color: rgba(91, 3, 3, 0.902);
}
@media (max-width: 1024px) {
  .investment-page-banner__cta .btn--primary {
    font-size: 1.094rem;
  }
}
@media (max-width: 768px) {
  .investment-page-banner__heading {
    font-size: 2.188rem;
    line-height: 1.2;
  }
  .investment-page-banner__subheading {
    font-size: 1.094rem;
  }
}

.contact-us {
  background: #f3eee9;
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .contact-us {
    padding: 102px 0;
  }
}
.contact-us__header {
  text-align: center;
  margin-bottom: 50px;
}
.contact-us__title {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 600;
  color: #580A00;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .contact-us__title {
    font-size: 1.563rem;
  }
}
.contact-us__desc {
  max-width: 798px;
  margin: 0 auto;
  font-family: "Alice", serif;
  color: #580A00;
  font-size: 1.25rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .contact-us__desc {
    font-size: 1.094rem;
  }
}
.contact-us__form-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 50px;
  margin: 0 auto;
}
.contact-us__form-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-us__form-header h3 {
  color: #580A00;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 100px;
}
@media (max-width: 768px) {
  .contact-us__form-header h3 {
    font-size: 1.563rem;
  }
}
.contact-us__form-header p {
  color: #30302E;
  font-family: "Alice", serif;
  font-size: 1.25rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .contact-us__form-header p {
    font-size: 1.094rem;
  }
}
.contact-us {
  /* FORM STYLING */
}
.contact-us form {
  display: grid;
  gap: 20px;
}
.contact-us input,
.contact-us select,
.contact-us textarea {
  width: 100%;
  padding: 14px;
  border: 1 solid #580903;
  background: #F2EFE9;
  font-size: 1.25rem;
  color: #30302E;
  font-family: "Alice", serif;
  outline: none;
}
.contact-us textarea {
  grid-column: span 2;
  min-height: 150px;
  font-size: 1.25rem;
  color: #30302E;
  font-family: "Alice", serif;
}
.contact-us {
  /* Full width fields */
}
.contact-us .full-width {
  grid-column: span 2;
}
.contact-us button,
.contact-us input[type=submit] {
  background: #580A00;
  color: #d4af37;
  padding: 16px;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-family: "Alice", serif;
}
.contact-us {
  /* Mobile */
}
@media (max-width: 768px) {
  .contact-us__form-box {
    padding: 30px;
  }
  .contact-us form {
    grid-template-columns: 1fr;
  }
  .contact-us textarea,
  .contact-us button {
    grid-column: span 1;
  }
}

.contact-info {
  background: #f3eee9;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .contact-info {
    padding: 0 0 102px 0;
  }
}
.contact-info__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}
@media (max-width: 1024px) {
  .contact-info__wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-info__heading {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  max-width: 509px;
  color: #580A00;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-info__heading {
    font-size: 1.563rem;
  }
}
.contact-info__subtext {
  font-size: 1.25rem;
  font-family: "Alice", serif;
  color: #580A00;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 0.23px solid #580903;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .contact-info__subtext {
    font-size: 1.094rem;
  }
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.contact-info__icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info__icon img {
  width: 40px;
  height: 40px;
}
.contact-info__label {
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  color: #580A00;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .contact-info__label {
    font-size: 1.125rem;
  }
}
.contact-info__value {
  font-size: 1.25rem;
  font-family: "Alice", serif;
  width: 75%;
  color: #580A00;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .contact-info__value {
    font-size: 1.094rem;
    width: 100%;
  }
}
.contact-info__map {
  height: 656px;
  border-radius: 15px;
  overflow: hidden;
}
.contact-info__map iframe {
  width: 100%;
  height: 656px;
  border: 0;
}

.new-arrivals {
  width: 100%;
  margin: 0;
  padding: 0;
}
.new-arrivals .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.new-arrivals__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.new-arrivals__image--left {
  grid-column: 1;
}
.new-arrivals__content {
  grid-column: 2;
  background-color: #580A00;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
}
.new-arrivals__image--right {
  grid-column: 3;
}
.new-arrivals__heading {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  color: #FFF2D8;
  font-weight: 500;
  line-height: 1.2;
  width: 90%;
  letter-spacing: -0.075em;
}
@media (max-width: 768px) {
  .new-arrivals__heading {
    font-size: 1.563rem;
    width: 100%;
  }
}
.new-arrivals__subtext {
  font-size: 1.25rem;
  line-height: 1.3;
  max-width: 406px;
  margin: 35px 0;
  color: #FFF2D8;
  font-family: "Alice", serif;
}
@media (max-width: 768px) {
  .new-arrivals__subtext {
    font-size: 1.094rem;
    max-width: 100%;
    margin: 20px 0;
  }
}
.new-arrivals__cta {
  border: 1px solid #FFF2D8;
  color: #FFF2D8;
  padding: 8px 42px;
  font-family: "Alice", serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #580A00;
}
@media (max-width: 768px) {
  .new-arrivals__cta {
    padding: 8px 30px;
    font-size: 1rem;
  }
}
.new-arrivals__cta:hover {
  background-color: #fff;
  color: #580A00;
}
@media (max-width: 768px) {
  .new-arrivals .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .new-arrivals__image--left {
    grid-column: 1;
    grid-row: 1;
  }
  .new-arrivals__content {
    grid-column: 1;
    grid-row: 2;
    padding: 40px 20px;
  }
  .new-arrivals__image--right {
    grid-column: 1;
    grid-row: 3;
  }
  .new-arrivals__image {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }
}

.brand-difference {
  background: #F2EFE9;
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .brand-difference {
    padding: 102px 10px;
  }
}
.brand-difference {
  text-align: center;
}
.brand-difference .container {
  max-width: 1920px;
}
.brand-difference__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  letter-spacing: -0.066em;
  max-width: 459px;
  margin: 0 auto;
  text-transform: uppercase;
  color: #580A00;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .brand-difference__heading {
    font-size: 1.563rem;
  }
}
.brand-difference__subtext {
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "Alice", serif;
  color: #580A00;
  margin: 20px 0 50px;
}
@media (max-width: 768px) {
  .brand-difference__subtext {
    margin: 10px 0 30px;
  }
}
.brand-difference {
  /* GRID */
}
.brand-difference__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  list-style: none;
  padding: 0;
  margin-left: 0;
}
@media (max-width: 768px) {
  .brand-difference__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .brand-difference__grid {
    grid-template-columns: 1fr;
  }
}
.brand-difference {
  /* CARD */
}
.brand-difference__card {
  position: relative;
  aspect-ratio: 542/629;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.brand-difference {
  /* IMAGE */
}
.brand-difference__image {
  position: absolute;
  inset: 0;
}
.brand-difference__image img,
.brand-difference__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-difference {
  /* VIDEO — explicit rules to ensure mobile rendering */
}
.brand-difference__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-playsinline: true;
  pointer-events: none;
}
.brand-difference {
  /* CONTENT */
}
.brand-difference__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #fff;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}
.brand-difference__icon {
  width: 48px;
}
.brand-difference__title {
  font-family: "Playfair Display", serif;
  font-size: 1.563rem;
}
@media (max-width: 768px) {
  .brand-difference__title {
    font-size: 1.25rem;
  }
}
.brand-difference__title {
  font-weight: 600;
  color: #FFF2D8;
}
.brand-difference__desc {
  font-size: 1.125rem;
  font-family: "Alice", serif;
}
@media (max-width: 768px) {
  .brand-difference__desc {
    font-size: 1.094rem;
  }
}
.brand-difference__desc {
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.85);
  max-width: 378px;
  margin: 0;
  padding: 0;
}
.brand-difference {
  /* CTA */
}
.brand-difference__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 1024px) {
  .brand-difference__cta {
    margin-top: 25px;
  }
}
.brand-difference__cta .btn--primary {
  color: #580A00;
  padding: 10px 20px;
  color: #FFFFFF;
}
.brand-difference__cta .btn--primary:hover {
  background-color: rgba(91, 3, 3, 0.902);
}
@media (max-width: 1024px) {
  .brand-difference__cta .btn--primary {
    font-size: 1.094rem;
  }
}

.craft-promise__content {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #580A00;
}
@media (min-width: 1024px) {
  .craft-promise__content {
    padding: 50px 0;
  }
}
.craft-promise__content__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #FFF2D8;
  line-height: 1.2;
  letter-spacing: -1.05px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .craft-promise__content__heading {
    font-size: 1.563rem;
  }
}
.craft-promise__content__subheading {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #FFF2D8;
  text-align: center;
  max-width: 814px;
  width: 100%;
  line-height: 1.4;
  margin: 12px 0 0;
}
@media (max-width: 768px) {
  .craft-promise__content__subheading {
    font-size: 1.094rem;
    line-height: 1.4;
    padding: 0 16px;
  }
}
.craft-promise__video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: #0a0806;
}
@media (max-width: 768px) {
  .craft-promise__video-wrapper {
    aspect-ratio: 4/3;
  }
}
.craft-promise__video-wrapper video,
.craft-promise__video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.craft-promise__video-placeholder {
  width: 100%;
  height: 100%;
  background: #0a0806;
}
.craft-promise .video-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.craft-promise .video-controls button {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s ease;
}
.craft-promise .video-controls button:hover {
  background: rgba(0, 0, 0, 0.85);
}

.homepage-page-banner {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-image: var(--bg-desktop);
}
@media (max-width: 768px) {
  .homepage-page-banner {
    background-image: var(--bg-mobile);
    min-height: 100vh;
    align-items: start;
  }
  .homepage-page-banner__content {
    text-align: center;
    align-items: center;
  }
}
.homepage-page-banner .container {
  position: relative;
  z-index: 2;
}
.homepage-page-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  padding: 4rem 0;
}
.homepage-page-banner__heading {
  font-size: 60px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #FFF2D8;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1.6px;
}
.homepage-page-banner__subheading {
  font-size: 1.563rem;
  font-family: "Alice", serif;
  color: #FFF2D8;
  line-height: 1.3;
  margin-bottom: 0;
}
.homepage-page-banner__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: column;
}
@media (max-width: 1024px) {
  .homepage-page-banner__cta {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
.homepage-page-banner__cta .btn--primary:hover {
  background-color: rgba(91, 3, 3, 0.902);
}
@media (max-width: 1024px) {
  .homepage-page-banner__cta .btn--primary {
    font-size: 1.094rem;
  }
}
.homepage-page-banner__cta .btn--secondary {
  background: #F2EFE9;
  color: #280804;
  font-family: "Alice", serif;
}
@media (max-width: 1024px) {
  .homepage-page-banner__cta .btn--secondary {
    font-size: 1.094rem;
  }
}
.homepage-page-banner__cta .btn--secondary:hover {
  color: #ffffff;
  background: #280804;
  border: 1px solid #F2EFE9;
}
@media (max-width: 768px) {
  .homepage-page-banner__heading {
    font-size: 2.188rem;
    line-height: 1.2;
  }
  .homepage-page-banner__subheading {
    font-size: 1.094rem;
  }
}

.homepage-testimonials {
  background: #f3eee9;
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .homepage-testimonials {
    padding: 102px 10px;
  }
}
.homepage-testimonials .container {
  max-width: 1920px;
}
.homepage-testimonials__header {
  text-align: center;
  margin-bottom: 30px;
}
.homepage-testimonials__title {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 600;
  color: #580A00;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .homepage-testimonials__title {
    font-size: 1.563rem;
  }
}
.homepage-testimonials__reviews {
  border-radius: 15px;
  margin: 0 auto;
}
.homepage-testimonials__cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.homepage-testimonials__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  margin-top: 10px;
  background: #580A00;
  color: #fff;
  font-family: "Alice", serif;
  font-size: 1.125rem;
  font-weight: 600;
}

.ds-landing-banner {
  background: #F2EFE9;
  text-align: center;
  padding: 60px 0;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .ds-landing-banner {
    padding: 90px;
  }
}
.ds-landing-banner__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.ds-landing-banner__title {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 600;
  color: #580A00;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .ds-landing-banner__title {
    font-size: 1.563rem;
  }
}
.ds-landing-banner__subtitle {
  font-size: 1.25rem;
  line-height: 1.3;
  font-family: "Alice", serif;
  color: #580A00;
  max-width: 840px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ds-landing-banner__subtitle {
    font-size: 1.094rem;
  }
}

.design-stories-grid {
  padding: 40px 0 80px;
}
.design-stories-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 40px;
}
@media (max-width: 767px) {
  .design-stories-grid__list {
    grid-template-columns: 1fr;
    gap: 48px 0;
  }
}
.design-stories-grid__empty {
  text-align: center;
  color: var(--color-text-muted, #888);
  padding: 60px 0;
  font-size: 1rem;
  grid-column: 1/-1;
}

.ds-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}
.ds-card__image-wrap {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 819px/569px;
  background-color: #1a1a1a;
  width: 100%;
}
.ds-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ds-card__body {
  padding: 18px 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ds-card__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.563rem;
  color: #580A00;
  margin: 0;
}
.ds-card__desc {
  font-size: 1.25rem;
  font-family: "Alice", serif;
  line-height: 1.3;
  color: #580A00;
  margin: 0;
  max-width: 600px;
}
@media (max-width: 768px) {
  .ds-card__desc {
    font-size: 1.094rem;
  }
}
.ds-card__learn-btn {
  display: flex;
  margin-top: 4px;
  padding: 8px 26px;
  border: 1px solid #580A00;
  color: #580A00;
  font-size: 1.094rem;
  font-family: "Alice", serif;
}
.ds-card__learn-btn:hover {
  background-color: #580A00;
  color: #fff;
  text-decoration: none;
}

.ds-single-gallery {
  background-color: #F2EFE9;
  padding: 60px;
}
@media (min-width: 1024px) {
  .ds-single-gallery {
    padding: 102px;
  }
}
.ds-single-gallery__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 768px) {
  .ds-single-gallery__strip {
    grid-template-rows: 1fr;
    gap: 16px;
  }
}
.ds-single-gallery__item {
  overflow: hidden;
  aspect-ratio: 408px/397px;
}
.ds-single-gallery__image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .ds-single-gallery {
    padding: 24px 12px;
  }
}

.ds-single-content {
  background-color: #F2EFE9;
  padding: 0px 0 80px;
}
.ds-single-content__inner {
  max-width: 840px;
  margin: 0 auto;
}
.ds-single-content__header {
  text-align: center;
  margin-bottom: 0;
  padding: 0 0 20px 0;
}
.ds-single-content__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #B58800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .ds-single-content__title {
    font-size: 1.563rem;
  }
}
.ds-single-content__subtitle {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #580A00;
  font-family: "Alice", serif;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .ds-single-content__subtitle {
    font-size: 1.094rem;
  }
}
.ds-single-content__divider {
  border: none;
  border-top: 1px dashed #580903;
  margin: 36px 0;
}
.ds-single-content__section {
  text-align: center;
  padding: 20px 0;
}
.ds-single-content__section--wp-content {
  text-align: left;
}
.ds-single-content__section-heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  text-transform: uppercase;
  line-height: 1.2;
  color: #580A00;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .ds-single-content__section-heading {
    font-size: 1.563rem;
  }
}
.ds-single-content__section-body {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #580A00;
  font-family: "Alice", serif;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .ds-single-content__section-body {
    font-size: 1.094rem;
  }
}
.ds-single-content__section-body ul, .ds-single-content__section-body ol {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.ds-single-content__section-body ul li, .ds-single-content__section-body ol li {
  padding: 3px 0;
  font-size: 0.88rem;
  color: #580A00;
}
.ds-single-content__section-body ul li::before, .ds-single-content__section-body ol li::before {
  content: "• ";
  color: #580A00;
}
.ds-single-content__section-body p {
  margin-bottom: 12px;
}
.ds-single-content__section-body strong, .ds-single-content__section-body b {
  color: #580A00;
  font-weight: 600;
}

.ds-single-cta {
  position: relative;
  min-height: 60vh;
  background-image: var(--bg-desktop);
}
@media (max-width: 768px) {
  .ds-single-cta {
    background-image: var(--bg-mobile);
    min-height: 100vh;
    align-items: start;
  }
  .ds-single-cta__content {
    text-align: center;
    align-items: center;
  }
}
.ds-single-cta {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.ds-single-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ds-single-cta .container {
  position: relative;
  z-index: 2;
}
.ds-single-cta__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  padding: 4rem 0;
}
.ds-single-cta__heading {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -1.6px;
  color: #FFF2D8;
  margin-bottom: 0;
}
.ds-single-cta__subtext {
  font-family: "Alice", serif;
  font-size: 1.563rem;
  line-height: 1.7;
  color: #FFF2D8;
  margin-bottom: 0;
}
.ds-single-cta__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ds-single-cta__cta .btn--primary:hover {
  background-color: rgba(91, 3, 3, 0.902);
}
@media (max-width: 1024px) {
  .ds-single-cta__cta .btn--primary {
    font-size: 1.094rem;
  }
}
@media (max-width: 768px) {
  .ds-single-cta {
    min-height: 100vh;
    align-items: start;
  }
  .ds-single-cta__content {
    text-align: center;
    align-items: center;
  }
  .ds-single-cta__heading {
    font-size: 2.188rem;
    line-height: 1.2;
  }
  .ds-single-cta__subtext {
    font-size: 1.094rem;
  }
}

.designstories-page-banner {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-image: var(--bg-desktop);
}
@media (max-width: 768px) {
  .designstories-page-banner {
    background-image: var(--bg-mobile);
    min-height: 100vh;
    align-items: start;
  }
  .designstories-page-banner__content {
    text-align: center;
    align-items: center;
  }
}
.designstories-page-banner .container {
  position: relative;
  z-index: 2;
}
.designstories-page-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  padding: 4rem 0;
}
.designstories-page-banner__heading {
  font-size: 60px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #FFF2D8;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1.6px;
}
.designstories-page-banner__subheading {
  font-size: 1.563rem;
  font-family: "Alice", serif;
  color: #FFF2D8;
  line-height: 1.4;
  margin-bottom: 0;
}
.designstories-page-banner__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.designstories-page-banner__cta .btn--primary:hover {
  background-color: rgba(91, 3, 3, 0.902);
}
@media (max-width: 1024px) {
  .designstories-page-banner__cta .btn--primary {
    font-size: 1.094rem;
  }
}
@media (max-width: 768px) {
  .designstories-page-banner__heading {
    font-size: 2.188rem;
    line-height: 1.2;
  }
  .designstories-page-banner__subheading {
    font-size: 1.094rem;
  }
}

.breadcrumbs {
  padding: 10px 25px;
  font-family: "Alice", serif;
  list-style: none;
  background-color: #F2EFE9;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #580A00;
}
@media (min-width: 1024px) {
  .breadcrumbs {
    padding: 10px 65px;
  }
}
.breadcrumbs a {
  color: #580A00;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.investment-banner {
  position: relative;
}
.investment-banner .breadcrumbs {
  background-color: transparent;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 25px;
  font-size: 0.875rem;
  color: #FFF2D8;
  z-index: 3;
  text-align: left;
}
@media (min-width: 1024px) {
  .investment-banner .breadcrumbs {
    padding: 15px 65px;
  }
}
.investment-banner .breadcrumbs a {
  color: #FFF2D8;
  text-decoration: none;
}
.investment-banner .breadcrumbs a:hover {
  text-decoration: underline;
  color: #fff;
}

.gold-graph-section {
  background-color: #F2EFE9;
  background-image: linear-gradient(rgba(88, 10, 0, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(88, 10, 0, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 60px 10px;
  text-align: center;
}
@media (min-width: 1024px) {
  .gold-graph-section {
    padding: 102px 0;
  }
}
.gold-graph-section__container {
  max-width: 900px;
  margin: 0 auto;
}
.gold-graph-section__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  color: #580A00;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .gold-graph-section__heading {
    font-size: 1.563rem;
  }
}
.gold-graph-section__subtext {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #580A00;
  line-height: 1.2;
  width: 100%;
  font-family: "Alice", serif;
  padding-top: 10px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .gold-graph-section__subtext {
    font-size: 1.094rem;
  }
}
.gold-graph-section .gold-chart {
  width: 100%;
  max-width: 860px;
  margin: 32px auto 24px;
}
.gold-graph-section .gold-chart canvas {
  width: 100% !important;
  height: auto !important;
  background: transparent;
}
.gold-graph-section__btn {
  display: inline-block;
  padding: 10px 50px;
  background: linear-gradient(180deg, #900D00 0%, #7A0C00 25%, #580A00 50%, #7E0C01 75%, #580903 100%);
  color: #DAAF30;
  font-size: 1.125rem;
  border-radius: 27px;
  text-decoration: none;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-family: "Alice", serif;
  margin-top: 10px;
}
.gold-graph-section__btn:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.pricing-model {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .pricing-model {
    padding: 102px 0;
  }
}
.pricing-model {
  text-align: center;
}
.pricing-model .container {
  max-width: 900px;
  margin: 0 auto;
}
.pricing-model__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #580A00;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .pricing-model__heading {
    font-size: 1.563rem;
  }
}
.pricing-model__subtext {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #580A00;
  line-height: 1.2;
  font-family: "Alice", serif;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .pricing-model__subtext {
    font-size: 1.094rem;
  }
}
.pricing-model__structure-heading {
  font-family: "Alice", serif;
  font-size: 1.563rem;
  font-weight: 400;
  color: #580A00;
  line-height: 1.2;
  margin: 40px 0 12px 0;
}
@media (max-width: 768px) {
  .pricing-model__structure-heading {
    font-size: 1.25rem;
  }
}
.pricing-model__formula {
  font-family: "Alice", serif;
  font-size: 1.563rem;
  font-weight: 400;
  color: #580A00;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .pricing-model__formula {
    font-size: 1.25rem;
  }
}
.pricing-model__structure-subtext {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #580A00;
  line-height: 1.2;
  font-family: "Alice", serif;
}
@media (max-width: 768px) {
  .pricing-model__structure-subtext {
    font-size: 1.094rem;
  }
}
.pricing-model .pm-formula-box {
  background-color: #F4F4F4;
  padding: 20px 30px;
  display: inline-block;
  margin-bottom: 30px;
}

.sg-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 6px 0;
  background: #FFF2D8;
}

.sg-sticky-bar__inner {
  display: flex;
  align-items: center;
  width: calc(100vw - 24px);
  background: #580A00;
  border-radius: 999px;
  overflow: hidden;
}

.sg-sticky-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFBF00;
  transition: 0.2s;
  text-transform: uppercase;
  font-size: 1rem;
  font-family: "Alice", serif;
}

.sg-sticky-bar__item:hover {
  color: #ffd54f;
}

/* ---------- SHOP ---------- */
.sg-sticky-bar__item--shop {
  flex: 1.6;
  font-size: 0.875rem;
  text-transform: uppercase;
}

/* ---------- CALL / WHATSAPP ---------- */
.sg-sticky-bar__item--call,
.sg-sticky-bar__item--whatsapp {
  flex: 0.7;
  text-transform: uppercase;
}

.sg-sticky-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.sg-sticky-bar__icon img {
  width: 30px;
  height: 30px;
}

.sg-sticky-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 191, 0, 0.35);
}

/* MOBILE*/
@media (max-width: 1023px) {
  .sg-sticky-bar__item--call .sg-sticky-bar__label,
  .sg-sticky-bar__item--whatsapp .sg-sticky-bar__label {
    display: none;
  }
  .sg-sticky-bar__item--shop {
    padding: 14px 0;
  }
}
/*DESKTOP*/
@media (min-width: 1024px) {
  .sg-sticky-bar__inner {
    width: auto;
    padding: 12px 30px;
    gap: 28px;
    border-radius: 999px;
  }
  .sg-sticky-bar__item {
    flex: none;
    gap: 10px;
    text-transform: uppercase;
    font-size: 1rem;
  }
  .sg-sticky-bar__item--call .sg-sticky-bar__label,
  .sg-sticky-bar__item--whatsapp .sg-sticky-bar__label {
    display: inline;
  }
  .sg-sticky-bar__divider {
    display: none;
  }
  .sg-sticky-bar__item--shop {
    order: 1;
  }
  .sg-sticky-bar__item--call {
    order: 2;
  }
  .sg-sticky-bar__item--whatsapp {
    order: 3;
  }
}
body {
  padding-bottom: 66px !important;
}

.sgj-calc {
  background: #F2EFE9;
  padding: 48px 24px;
}

.sgj-calc__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

.sgj-calc__card {
  background: #FFFFFF;
  border: 1px solid #E4E1DB;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.18s ease;
}

/* Small label above card content */
.sgj-calc__card-label {
  font-size: 16.5px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Alice", serif;
  color: #9B9890;
  margin-bottom: 18px;
}

/* Stack cards in left column */
.sgj-calc__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Right column is sticky on desktop */
.sgj-calc__right {
  position: sticky;
  top: 42px;
}

.sgj-calc__header-card {
  border-top: 3px solid #B8860B;
  position: relative;
}

.sgj-calc__logout-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 10px auto 0;
  border: 1px solid #E4E1DB;
  text-decoration: none;
  width: 100%;
  height: 40px;
  border: 1px solid #E4E1DB;
  border-radius: 8px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #5C5A55;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  font-family: "Alice", serif;
}

.sgj-calc__logout-btn:hover {
  background: #F7F5F2;
  border-color: #CCC9C1;
  color: #1A1814;
}

.sgj-calc__eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #B8860B;
  margin-bottom: 10px;
  font-family: "Alice", serif;
}

.sgj-calc__title {
  font-size: 28px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #1A1814;
  margin: 0 0 8px;
}

.sgj-calc__subtitle {
  font-size: 16.5px;
  line-height: 1.2;
  color: #5C5A55;
  margin: 0 0 28px;
  max-width: 52ch;
  padding: 8px 0;
  font-family: "Alice", serif;
}

.sgj-calc__field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sgj-calc__label {
  font-size: 16.5px;
  padding-top: 10px;
  font-weight: 600;
  color: #5C5A55;
  font-family: "Alice", serif;
}

.sgj-calc__input-row {
  display: flex;
  gap: 10px;
}

.sgj-calc__input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #E4E1DB;
  border-radius: 8px;
  background: #F7F5F2;
  font-size: 14px;
  color: #1A1814;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  font-family: "Alice", serif;
  -webkit-appearance: none;
}

.sgj-calc__input::placeholder {
  color: #9B9890;
  font-size: 16px;
}

.sgj-calc__input:focus {
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
  background: #FFFFFF;
}

/* Hide number input arrows */
.sgj-calc__input[type=number]::-webkit-inner-spin-button,
.sgj-calc__input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.sgj-calc__input[type=number] {
  -moz-appearance: textfield;
}

/* Inline error */
.sgj-calc__error {
  font-size: 12px;
  color: #C0392B;
  min-height: 18px;
  opacity: 0;
  font-family: "Alice", serif;
  transition: opacity 0.18s ease;
  margin: 0;
}

.sgj-calc__error.is-visible {
  opacity: 1;
}

.sgj-calc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
  font-family: "Alice", serif;
  position: relative;
  overflow: hidden;
}

.sgj-calc__btn--fetch {
  background: #580B00;
  color: #FFFFFF;
}

.sgj-calc__btn--fetch:hover {
  background: #333;
}

.sgj-calc__btn--fetch:active {
  transform: scale(0.98);
}

.sgj-calc__btn--fetch:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Loading state */
.sgj-calc__btn-label {
  transition: opacity 0.18s ease;
}

.sgj-calc__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sgj-spin 0.7s linear infinite;
  position: absolute;
}

.sgj-calc__btn.is-loading .sgj-calc__btn-label {
  opacity: 0;
}

.sgj-calc__btn.is-loading .sgj-calc__spinner {
  display: block;
}

@keyframes sgj-spin {
  to {
    transform: rotate(360deg);
  }
}
.sgj-calc__btn--calculate {
  background: #B8860B;
  color: #FFFFFF;
  align-self: flex-end;
  font-family: "Alice", serif;
  flex-shrink: 0;
  height: 44px;
  padding: 0 24px;
}

.sgj-calc__btn--calculate:hover {
  background: #A07708;
}

.sgj-calc__btn--calculate:active {
  transform: scale(0.98);
}

.sgj-calc__product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  font-family: "Alice", serif;
}

.sgj-calc__info-cell--wide {
  grid-column: span 2;
}

.sgj-calc__info-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Alice", serif;
}

.sgj-calc__info-key {
  font-size: 16.5px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Alice", serif;
  color: #9B9890;
}

.sgj-calc__info-val {
  font-size: 16.5px;
  font-weight: 500;
  color: #1A1814;
  word-break: break-word;
  display: block;
  font-family: "Alice", serif;
  padding: 12px 14px;
}

.sgj-calc__info-val--price {
  font-family: "Alice", serif;
  font-size: 18px;
  font-weight: 700;
  color: #B8860B;
}

.sgj-calc__pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.sgj-calc__pricing-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16.5px;
  font-family: "Alice", serif;
}

/* Read-only display styled like an input */
.sgj-calc__readonly-input {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 12px;
  background: #F2EFE9;
  border: 1px solid #E4E1DB;
  border-radius: 8px;
  font-family: "Alice", serif;
  font-size: 16.5px;
  font-weight: 600;
  color: #1A1814;
}

.sgj-calc__input-with-unit {
  position: relative;
  width: 100%;
}
.sgj-calc__input-with-unit .sgj-calc__input {
  width: 100%;
  height: 44px;
  padding: 0 40px 0 14px;
}
.sgj-calc__input-with-unit .sgj-calc__unit {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #9B9890;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  font-family: "Alice", serif;
}
.sgj-calc__input-with-unit--prefix .sgj-calc__input {
  padding-left: 30px;
  padding-right: 14px;
}
.sgj-calc__input-with-unit--prefix .sgj-calc__unit {
  left: 12px;
  right: auto;
}

.sgj-calc__pricing-cell .sgj-calc__label {
  min-height: 40px; /* room for up to 2 lines */
  display: flex;
  align-items: flex-end; /* sit text at the bottom, next to the input */
  padding-top: 0; /* override the global label padding-top:10px */
  line-height: 1.2;
}

.sgj-calc__gold-card {
  background: #F5EDD6;
  border-color: #D4AF5A;
  font-family: "Alice", serif;
}

.sgj-calc__gold-card .sgj-calc__card-label {
  color: #8A6400;
  font-size: 16.5px;
  font-family: "Alice", serif;
}

.sgj-calc__gold-card .sgj-calc__label {
  color: #6B4E00;
  font-family: "Alice", serif;
  font-size: 16.5px;
}

.sgj-calc__gold-card .sgj-calc__input {
  height: 64px;
  font-size: 28px;
  font-weight: 700;
  font-family: "Alice", serif;
  background: #FFFDF5;
  border-color: #D4AF5A;
}

.sgj-calc__gold-card .sgj-calc__input:focus {
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.sgj-calc__gold-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-family: "Alice", serif;
}

.sgj-calc__btn--calculate {
  align-self: center;
}

.sgj-calc__empty {
  padding: 56px 32px;
  text-align: center;
  border: 1px dashed #B8860B;
  border-radius: 8px;
  background: #F2EFE9;
  font-family: "Alice", serif;
}

.sgj-calc__empty-icon {
  font-size: 42px;
  color: #9B9890;
  margin-bottom: 16px;
  opacity: 0.4;
}

.sgj-calc__empty-text {
  font-size: 16.5px;
  line-height: 1.4;
  color: #9B9890;
  max-width: 28ch;
  font-family: "Alice", serif;
  margin: 0 auto;
}

.sgj-calc__result-card {
  border-top: 3px solid #B8860B;
  animation: sgj-fade-in 0.25s ease;
}

@keyframes sgj-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sgj-calc__result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sgj-calc__result-header .sgj-calc__card-label {
  margin-bottom: 0;
  font-size: 16.5px;
  font-family: "Alice", serif;
}

.sgj-calc__result-badge {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B8860B;
  background: #F5EDD6;
  border: 1px solid #D4AF5A;
  border-radius: 20px;
  padding: 3px 10px;
}

/* Summary table rows */
.sgj-calc__summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: "Alice", serif;
}

.sgj-calc__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E4E1DB;
}

.sgj-calc__summary-row:first-child {
  border-top: 1px solid #E4E1DB;
}

.sgj-calc__summary-key {
  font-size: 13px;
  color: #9B9890;
}

.sgj-calc__summary-val {
  font-family: "Alice", serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A1814;
}

.sgj-calc__summary-divider {
  height: 1px;
  background: #E4E1DB;
  margin: 8px 0;
}

.sgj-calc__summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 0;
}

.sgj-calc__summary-total span {
  font-size: 14px;
  font-weight: 700;
  font-family: "Alice", serif;
  color: #1A1814;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sgj-calc__summary-total strong {
  font-family: "Alice", serif;
  font-size: 28px;
  font-weight: 700;
  color: #B8860B;
  letter-spacing: -0.02em;
}

/* Copy button */
.sgj-calc__copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 40px;
  margin-top: 20px;
  border: 1px solid #E4E1DB;
  border-radius: 4px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #9B9890;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  font-family: "Alice", serif;
}

.sgj-calc__copy-btn:hover {
  background: #F2EFE9;
  border-color: #E4E1DB;
  color: #1A1814;
}

@media (max-width: 860px) {
  .sgj-calc__inner {
    grid-template-columns: 1fr;
  }
  .sgj-calc__right {
    position: static;
    /* Move result below everything on mobile */
    order: 10;
  }
  .sgj-calc__empty {
    display: none; /* No need for empty state hint on mobile */
  }
  .sgj-calc__product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sgj-calc__info-cell--wide {
    grid-column: span 2;
  }
}
@media (max-width: 540px) {
  .sgj-calc {
    padding: 20px 12px 40px;
  }
  .sgj-calc__card {
    padding: 20px;
    border-radius: 12px;
  }
  /* Typography */
  .sgj-calc__title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .sgj-calc__subtitle {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .sgj-calc__label,
  .sgj-calc__input,
  .sgj-calc__btn,
  .sgj-calc__readonly-input,
  .sgj-calc__info-val,
  .sgj-calc__info-val a,
  .sgj-calc__summary-key,
  .sgj-calc__summary-val,
  .sgj-calc__empty-text,
  .sgj-calc__copy-btn,
  .sgj-calc__logout-btn {
    font-size: 16.5px;
    font-family: "Alice", serif;
  }
  /* Input rows */
  .sgj-calc__input-row {
    flex-direction: column;
    gap: 8px;
  }
  /* Gold section */
  .sgj-calc__gold-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .sgj-calc__gold-row .sgj-calc__field-group {
    width: 100%;
  }
  .sgj-calc__input,
  .sgj-calc__btn--fetch,
  .sgj-calc__btn--calculate {
    width: 100%;
    padding: 10px;
  }
  .sgj-calc__gold-card .sgj-calc__input {
    width: 100%;
    height: 44px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
  }
  .sgj-calc__btn--calculate {
    align-self: center;
  }
  /* Product info */
  .sgj-calc__product-grid {
    grid-template-columns: 1fr;
  }
  .sgj-calc__info-cell--wide {
    grid-column: span 1;
  }
  .sgj-calc__info-val,
  .sgj-calc__info-val a {
    font-size: 16px;
    padding: 14px;
  }
  /* Pricing */
  .sgj-calc__pricing-grid .sgj-calc__input-with-unit .sgj-calc__input {
    padding: 0 32px; /* equal room both sides for every field */
    text-align: right; /* numbers align to a common edge; drop if you prefer left */
  }
  .sgj-calc__pricing-grid {
    /* keep the $ from overlapping right-aligned text in the prefix field */
  }
  .sgj-calc__pricing-grid .sgj-calc__input-with-unit--prefix .sgj-calc__input {
    padding-left: 28px;
  }
  .sgj-calc__readonly-input {
    height: 44px;
    font-size: 16px;
  }
  /* Results */
  .sgj-calc__summary-key,
  .sgj-calc__summary-val,
  .sgj-calc__summary-total span {
    font-size: 16px;
    font-family: "Alice", serif;
  }
  .sgj-calc__summary-total strong {
    font-size: 24px;
    font-family: "Alice", serif;
  }
  .sgj-calc__copy-btn,
  .sgj-calc__logout-btn {
    height: 44px;
    font-size: 16px;
    font-family: "Alice", serif;
  }
}
.sg-search {
  background: #f8f8f8;
  padding-bottom: 4rem;
}
.sg-search__hero {
  background: #580A00;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.sg-search__eyebrow {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #DAAF30;
  margin: 0 0 0.75rem;
}
.sg-search__heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #F2EFE9;
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.sg-search__count {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: rgba(242, 239, 233, 0.6);
  margin: 0 0 2rem;
}
.sg-search__form {
  display: flex;
  align-items: center;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(242, 239, 233, 0.08);
  border: 1px solid rgba(242, 239, 233, 0.25);
  border-radius: 6px;
  overflow: hidden;
}
.sg-search__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #F2EFE9;
}
.sg-search__input::placeholder {
  color: rgba(242, 239, 233, 0.45);
}
.sg-search__input::-webkit-search-decoration, .sg-search__input::-webkit-search-cancel-button {
  display: none;
}
.sg-search__submit {
  background: #DAAF30;
  border: none;
  padding: 0 18px;
  height: 48px;
  cursor: pointer;
  color: #580A00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.sg-search__submit:hover {
  opacity: 0.88;
}
.sg-search__card--post {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
}
.sg-search__card--post:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.sg-search__card-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f8f8f8;
  display: block;
}
.sg-search__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sg-search__card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #580A00;
  color: #F2EFE9;
  font-family: "Alice", serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}
.sg-search__card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.sg-search__card-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #580A00;
  margin: 0;
}
.sg-search__card-title a {
  color: inherit;
  text-decoration: none;
}
.sg-search__card-excerpt {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.5;
}
.sg-search__card-cta {
  margin-top: auto;
  font-family: "Alice", serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #DAAF30;
  text-decoration: none;
}
.sg-search__pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.sg-search__pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.sg-search__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.sg-search__pagination .page-numbers a, .sg-search__pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.sg-search__pagination .page-numbers a:hover, .sg-search__pagination .page-numbers a.current, .sg-search__pagination .page-numbers span:hover, .sg-search__pagination .page-numbers span.current {
  background: #580A00;
  color: #F2EFE9;
  border-color: #580A00;
}
.sg-search__empty {
  text-align: center;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.sg-search__empty-icon {
  color: rgba(88, 10, 0, 0.2);
}
.sg-search__empty-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #580A00;
  margin: 0;
}
.sg-search__empty-text {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #4a4a4a;
  max-width: 360px;
  margin: 0;
}
.sg-search__empty-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  padding: 12px 28px;
  background: #580A00;
  color: #F2EFE9;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.sg-search__empty-btn:hover {
  opacity: 0.85;
}

.thank-you {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #280804 0%, #580903 100%);
  padding: 30px 0;
}
@media (min-width: 1024px) {
  .thank-you {
    padding: 70px 0;
  }
}
.thank-you::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}
.thank-you__card {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 70px 50px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .thank-you__card {
    padding: 50px 24px;
    border-radius: 24px;
  }
}
.thank-you__icon {
  margin-bottom: 32px;
}
.thank-you__icon svg {
  display: block;
  margin: 0 auto;
}
.thank-you__tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(198, 161, 110, 0.12);
  border: 1px solid rgba(198, 161, 110, 0.3);
  color: #D7B07A;
  font-size: 15px;
  font-family: "Alice", serif;
  margin-bottom: 24px;
}
.thank-you__title {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .thank-you__title {
    font-size: 30px;
  }
}
.thank-you__text {
  max-width: 560px;
  margin: 0 auto 42px auto;
  font-family: "Alice", serif;
  font-size: 18px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 768px) {
  .thank-you__text {
    font-size: 17.5px;
  }
}
.thank-you__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.thank-you__btn {
  min-width: 220px;
  height: 58px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Alice", serif;
  font-size: 17px;
}
.thank-you__btn--primary {
  background: #C6A16E;
  color: #fff;
}
.thank-you__btn--primary:hover {
  background: #d6b483;
}
.thank-you__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  background: transparent;
}
.thank-you__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 576px) {
  .thank-you__btn {
    width: 100%;
  }
}

.terms-and-conditions-section {
  background: #F2EFE9;
  padding: 60px 0;
}
.terms-and-conditions-section .terms-and-conditions__header {
  text-align: center;
  max-width: 950px;
  margin: 10px auto;
}
@media (max-width: 768px) {
  .terms-and-conditions-section .terms-and-conditions__header {
    margin-bottom: 40px;
  }
}
.terms-and-conditions-section .terms-and-conditions__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #580A00;
  text-transform: uppercase;
  letter-spacing: -0.075rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .terms-and-conditions-section .terms-and-conditions__heading {
    font-size: 1.563rem;
  }
}
.terms-and-conditions-section .terms-and-conditions__list {
  max-width: 1000px;
  margin: 0 auto;
}
.terms-and-conditions-section .terms-and-conditions__item {
  padding: 40px 0;
  border-bottom: 1px solid rgba(218, 175, 48, 0.3);
}
.terms-and-conditions-section .terms-and-conditions__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .terms-and-conditions-section .terms-and-conditions__item {
    padding: 30px 0;
  }
}
.terms-and-conditions-section .terms-and-conditions__content {
  max-width: 900px;
}
.terms-and-conditions-section .terms-and-conditions__title {
  font-family: "Alice", serif;
  font-size: 32px;
  font-weight: 600;
  color: #580A00;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .terms-and-conditions-section .terms-and-conditions__title {
    font-size: 1.563rem;
  }
}
.terms-and-conditions-section .terms-and-conditions__description {
  font-family: "Alice", serif;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #580A00;
}
@media (max-width: 768px) {
  .terms-and-conditions-section .terms-and-conditions__description {
    font-size: 1.094rem;
  }
}
.terms-and-conditions-section .terms-and-conditions__description p {
  margin-bottom: 18px;
}
.terms-and-conditions-section .terms-and-conditions__description ul,
.terms-and-conditions-section .terms-and-conditions__description ol {
  padding-left: 20px;
  margin: 20px 0;
}
.terms-and-conditions-section .terms-and-conditions__description ul {
  list-style: disc;
}
.terms-and-conditions-section .terms-and-conditions__description ol {
  list-style: decimal;
}
.terms-and-conditions-section .terms-and-conditions__description li {
  margin-bottom: 10px;
  display: list-item;
}
.terms-and-conditions-section .terms-and-conditions__description a {
  color: #580A00;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.terms-and-conditions-section .terms-and-conditions__description a:hover {
  opacity: 0.8;
}
.terms-and-conditions-section .terms-and-conditions__description strong {
  font-weight: 600;
}

.privacy-policy-section {
  background: #F2EFE9;
  padding: 60px 0;
}
.privacy-policy-section .privacy-policy__header {
  text-align: center;
  max-width: 950px;
  margin: 10px auto;
}
@media (max-width: 768px) {
  .privacy-policy-section .privacy-policy__header {
    margin-bottom: 40px;
  }
}
.privacy-policy-section .privacy-policy__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #580A00;
  text-transform: uppercase;
  letter-spacing: -0.075rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .privacy-policy-section .privacy-policy__heading {
    font-size: 1.563rem;
  }
}
.privacy-policy-section .privacy-policy__list {
  max-width: 1000px;
  margin: 0 auto;
}
.privacy-policy-section .privacy-policy__item {
  padding: 40px 0;
  border-bottom: 1px solid rgba(218, 175, 48, 0.3);
}
.privacy-policy-section .privacy-policy__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .privacy-policy-section .privacy-policy__item {
    padding: 30px 0;
  }
}
.privacy-policy-section .privacy-policy__content {
  max-width: 900px;
}
.privacy-policy-section .privacy-policy__title {
  font-family: "Alice", serif;
  font-size: 32px;
  font-weight: 600;
  color: #580A00;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .privacy-policy-section .privacy-policy__title {
    font-size: 1.563rem;
  }
}
.privacy-policy-section .privacy-policy__description {
  font-family: "Alice", serif;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #580A00;
}
@media (max-width: 768px) {
  .privacy-policy-section .privacy-policy__description {
    font-size: 1.094rem;
  }
}
.privacy-policy-section .privacy-policy__description p {
  margin-bottom: 18px;
}
.privacy-policy-section .privacy-policy__description ul,
.privacy-policy-section .privacy-policy__description ol {
  padding-left: 20px;
  margin: 20px 0;
}
.privacy-policy-section .privacy-policy__description ul {
  list-style: disc;
}
.privacy-policy-section .privacy-policy__description ol {
  list-style: decimal;
}
.privacy-policy-section .privacy-policy__description li {
  margin-bottom: 10px;
  display: list-item;
}
.privacy-policy-section .privacy-policy__description a {
  color: #580A00;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.privacy-policy-section .privacy-policy__description a:hover {
  opacity: 0.8;
}
.privacy-policy-section .privacy-policy__description strong {
  font-weight: 600;
}

.shipping-and-returns-section {
  background: #F2EFE9;
  padding: 60px 0;
}
.shipping-and-returns-section .shipping-and-returns__header {
  text-align: center;
  max-width: 950px;
  margin: 10px auto;
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__header {
    margin-bottom: 40px;
  }
}
.shipping-and-returns-section .shipping-and-returns__heading {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #580A00;
  text-transform: uppercase;
  letter-spacing: -0.075rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__heading {
    font-size: 1.563rem;
  }
}
.shipping-and-returns-section .shipping-and-returns__list {
  max-width: 1000px;
  margin: 0 auto;
}
.shipping-and-returns-section .shipping-and-returns__item {
  padding: 40px 0;
  border-bottom: 1px solid rgba(218, 175, 48, 0.3);
}
.shipping-and-returns-section .shipping-and-returns__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__item {
    padding: 30px 0;
  }
}
.shipping-and-returns-section .shipping-and-returns__content {
  max-width: 900px;
}
.shipping-and-returns-section .shipping-and-returns__title {
  font-family: "Alice", serif;
  font-size: 32px;
  font-weight: 600;
  color: #580A00;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__title {
    font-size: 1.563rem;
  }
}
.shipping-and-returns-section .shipping-and-returns__description {
  font-family: "Alice", serif;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #580A00;
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__description {
    font-size: 1.094rem;
  }
}
.shipping-and-returns-section .shipping-and-returns__description p {
  margin-bottom: 18px;
}
.shipping-and-returns-section .shipping-and-returns__description ul,
.shipping-and-returns-section .shipping-and-returns__description ol {
  padding-left: 20px;
  margin: 20px 0;
}
.shipping-and-returns-section .shipping-and-returns__description ul {
  list-style: disc;
}
.shipping-and-returns-section .shipping-and-returns__description ol {
  list-style: decimal;
}
.shipping-and-returns-section .shipping-and-returns__description li {
  margin-bottom: 10px;
  display: list-item;
}
.shipping-and-returns-section .shipping-and-returns__description a {
  color: #580A00;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.shipping-and-returns-section .shipping-and-returns__description a:hover {
  opacity: 0.8;
}
.shipping-and-returns-section .shipping-and-returns__description strong {
  font-weight: 600;
}
.shipping-and-returns-section .shipping-and-returns__description .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__description .table-responsive {
    border: 1px solid rgba(218, 175, 48, 0.4);
    border-radius: 4px;
  }
}
.shipping-and-returns-section .shipping-and-returns__description .table-responsive .table-scroll-hint {
  display: none;
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__description .table-responsive .table-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(218, 175, 48, 0.1);
    border-bottom: 1px solid rgba(218, 175, 48, 0.3);
    color: #580A00;
    font-family: "Alice", serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    opacity: 1;
    transition: opacity 0.4s ease;
    user-select: none;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__description .table-responsive .table-scroll-hint--hidden {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__description .table-responsive .table-scroll-hint__text {
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__description .table-responsive .table-scroll-hint__icon {
    display: flex;
    align-items: center;
    color: #DAAF30;
  }
  .shipping-and-returns-section .shipping-and-returns__description .table-responsive .table-scroll-hint__icon:first-child {
    transform: rotate(180deg);
  }
}
.shipping-and-returns-section .shipping-and-returns__description .table-responsive table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  margin: 0;
  font-family: "Alice", serif;
  font-size: 1.125rem;
  border: 1px solid rgba(218, 175, 48, 0.4);
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__description .table-responsive table {
    font-size: 1.094rem;
    border: none;
  }
}
.shipping-and-returns-section .shipping-and-returns__description .table-responsive table thead {
  background: rgba(218, 175, 48, 0.15);
}
.shipping-and-returns-section .shipping-and-returns__description .table-responsive table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  color: #580A00;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  border: 1px solid rgba(218, 175, 48, 0.4);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__description .table-responsive table thead th {
    padding: 10px 12px;
  }
}
.shipping-and-returns-section .shipping-and-returns__description .table-responsive table tbody tr {
  transition: background 0.2s ease;
}
.shipping-and-returns-section .shipping-and-returns__description .table-responsive table tbody tr:hover {
  background: rgba(218, 175, 48, 0.05);
}
.shipping-and-returns-section .shipping-and-returns__description .table-responsive table tbody tr td {
  padding: 14px 18px;
  color: #580A00;
  vertical-align: top;
  line-height: 1.5;
  border: 1px solid rgba(218, 175, 48, 0.4);
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__description .table-responsive table tbody tr td {
    padding: 10px 12px;
  }
}
.shipping-and-returns-section .shipping-and-returns__description .table-responsive table tfoot {
  background: rgba(218, 175, 48, 0.08);
}
.shipping-and-returns-section .shipping-and-returns__description .table-responsive table tfoot td {
  padding: 14px 18px;
  font-weight: 600;
  color: #580A00;
  border: 1px solid rgba(218, 175, 48, 0.4);
}
@media (max-width: 768px) {
  .shipping-and-returns-section .shipping-and-returns__description .table-responsive table tfoot td {
    padding: 10px 12px;
  }
}

/*# sourceMappingURL=main.css.map */
