﻿:root {
  --bg-deep: #182941;
  --bg-mid: #23344d;
  --bg-footer: #14253b;
  --accent: #f1792a;
  --accent-soft: #f8a059;
  --text-main: #f2efe7;
  --text-dim: #b9c2d3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: "Jost", sans-serif;
  line-height: 1.4;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.3px;
}

p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.page-container {
  max-width: 1130px;
}

.site-header {
  background: #1a2b45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.brand-box {
  width: 52px;
  /* height: 52px; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  /* background: #0f2138; */
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
}

.brand-logo {
  max-width: 180px;
  /* max-height: 42px; */
  width: auto;
  height: auto;
  display: block;
}

.site-header .brand-box {
  width: auto;
  padding: 0;
}

.site-header .brand-logo {
  width: 170px;
  max-width: 100%;
}

.site-footer .brand-box {
  width: auto;
  padding: 0;
  justify-content: flex-start;
}

.site-footer .brand-logo {
  width: 190px;
  max-width: 100%;
}

/* .site-header .brand-logo {
  max-height: 50px;
} */

.brand-title {
  color: #f2efe7;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.navbar-nav .nav-link {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.55rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--accent);
}

.icon-actions {
  gap: 12px;
}

.icon-search,
.icon-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
}

.icon-search {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.icon-search::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
}

.icon-search::after {
  content: "";
  width: 7px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
  position: absolute;
  left: 11px;
  top: 13px;
}

.icon-cart {
  font-size: 8px;
  border-color: rgba(241, 121, 42, 0.7);
  color: var(--accent);
}

.hero-section {
  position: relative;
  min-height: 590px;
  background-image:
    linear-gradient(90deg, rgba(15, 34, 58, 0.95) 0%, rgba(17, 35, 56, 0.72) 48%, rgba(15, 28, 44, 0.25) 100%),
    url("assets/hero-copper.jpg");
  background-size: cover;
  background-position: center 62%;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 54px;
  padding-bottom: 44px;
  padding-left: 190px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero-section h1 {
  font-size: 78px;
  line-height: 0.93;
  max-width: 650px;
  margin-bottom: 16px;
}

.hero-section h1 span {
  color: var(--accent);
}

.hero-text {
  color: #d8dfeb;
  font-size: 19px;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 22px;
}

.home-page .hero-text,
.home-page .artisan-text p,
.home-page .story-text {
  font-size: 18px;
}

.home-page .hero-section {
  animation: heroBgZoom 1.8s ease-out both;
}

.home-page .hero-content .eyebrow {
  animation: fadeUp 0.7s ease-out 0.05s both;
}

.home-page .hero-content h1 {
  animation: fadeUp 0.85s ease-out 0.18s both;
}

.home-page .hero-content .hero-text {
  animation: fadeUp 0.9s ease-out 0.32s both;
}

.home-page .hero-buttons {
  animation: fadeUp 0.9s ease-out 0.46s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-shop,
.btn-story {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 9px;
  padding: 12px 24px;
}

.btn-shop {
  border: 0;
  background: var(--accent);
}

.btn-shop:hover {
  background: #d96d22;
}

.btn-story {
  border: 0;
}

.home-page .hero-buttons .btn-shop,
.home-page .hero-buttons .btn-story {
  min-width: 184px;
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.22s ease;
}

.home-page .hero-buttons .btn-shop {
  background: linear-gradient(135deg, #f1792a 0%, #ff8a3d 100%);
  color: #121f34;
  box-shadow: 0 8px 18px rgba(241, 121, 42, 0.26);
}

.home-page .hero-buttons .btn-shop:hover {
  background: linear-gradient(135deg, #ff8a3d 0%, #f1792a 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(241, 121, 42, 0.34);
}

.home-page .hero-buttons .btn-story {
  background: rgba(14, 24, 40, 0.45);
  border: 1px solid rgba(232, 239, 251, 0.45);
  color: #f2efe7;
}

.home-page .hero-buttons .btn-story:hover {
  background: rgba(22, 35, 56, 0.7);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  transform: translateY(-1px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBgZoom {
  from {
    background-size: 108%;
  }
  to {
    background-size: 100%;
  }
}

.scroll-strip {
  background: var(--accent);
  color: #132338;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  padding: 7px 0;
  white-space: nowrap;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 26px;
  min-width: max-content;
}

.strip-track span::before {
  content: "•";
  margin-right: 24px;
}

.strip-track span:first-child::before {
  margin-right: 0;
  content: "";
}

.py-lg-6 {
  padding-top: 5.8rem !important;
  padding-bottom: 5.8rem !important;
}

.section-dark {
  background: var(--bg-deep);
}

.section-mid {
  background: var(--bg-mid);
}

.section-title h2,
.bestsellers h2,
.artisan h2,
.principles h2,
.story h2 {
  font-size: 50px;
  line-height: 1.03;
}

.underline {
  margin: 12px auto 0;
  height: 2px;
  width: 50px;
  background: var(--accent);
}

.category-card,
.product-card {
  position: relative;
}

.category-card img,
.product-card img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  display: block;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(6, 10, 14, 0.62) 100%);
}

.card-content {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
}

.card-content h3 {
  font-size: 20px;
}

.card-content p {
  font-size: 10px;
  color: var(--text-dim);
}

.view-all {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 10px;
  text-decoration: none;
}

.product-card h3 {
  margin-top: 10px;
  font-size: 19px;
}

.product-card p {
  margin-top: 4px;
  font-size: 11px;
}

.price {
  color: #ff8f46;
  margin-right: 8px;
}

.old-price {
  color: #8c98ae;
  text-decoration: line-through;
}

.artisan-img {
  max-height: 330px;
  object-fit: cover;
}

.artisan-text h2 {
  margin-bottom: 16px;
}

.artisan-text h2 span {
  color: var(--accent);
}

.artisan-text p {
  color: #d0d9e8;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 520px;
}

.principle-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 14px;
  height: 100%;
  text-align: center;
  min-height: 152px;
}

.principle-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.principle-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #c8d1e1;
}

.story {
  text-align: center;
}

.story h2 span {
  color: var(--accent);
}

.story-text {
  max-width: 560px;
  margin: 10px auto 28px;
  color: #c9d3e2;
  font-size: 12px;
}

.stats-row {
  margin-bottom: 28px;
}

.stat {
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
}

.stat-label {
  color: #d0d9e8;
  font-size: 11px;
  margin-top: 6px;
}

.site-footer {
  background: var(--bg-footer);
}

.site-footer h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.site-footer a,
.site-footer p {
  display: block;
  color: #c3ccdb;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--accent-soft);
}

.footer-copy {
  max-width: 280px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 16px;
  color: #92a0ba;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.75, 0.24, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .hero-content {
    padding-left: 22px;
  }

  .hero-section {
    min-height: 540px;
  }

  .hero-section h1 {
    font-size: 62px;
  }

  .section-title h2,
  .bestsellers h2,
  .artisan h2,
  .principles h2,
  .story h2 {
    font-size: 44px;
  }
}

@media (max-width: 767.98px) {
  .site-header .navbar {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }

  .site-header .brand-logo {
    width: 132px;
  }

  .site-footer .brand-logo {
    width: 148px;
  }

  .site-footer .footer-copy {
    max-width: 100%;
  }

  .hero-section {
    min-height: 520px;
  }

  .hero-content {
    padding-left: 12px;
  }

  .hero-section h1 {
    font-size: 50px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-buttons {
    gap: 8px;
  }

  .btn-shop,
  .btn-story {
    padding: 10px 16px;
    font-size: 9px;
  }

  .home-page .hero-buttons .btn-shop,
  .home-page .hero-buttons .btn-story {
    min-width: 146px;
    padding: 11px 16px;
    font-size: 12px;
  }

  .section-title h2,
  .bestsellers h2,
  .artisan h2,
  .principles h2,
  .story h2 {
    font-size: 36px;
  }

  .category-card img,
  .product-card img {
    height: 210px;
  }

  .stat {
    font-size: 30px;
  }
}

.shop-page {
  background: var(--bg-deep);
}

.shop-hero {
  background: #2a3b57;
  padding: 70px 0 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.shop-hero .eyebrow {
  margin-bottom: 8px;
}

.shop-hero h1 {
  font-size: 74px;
  line-height: 1;
  margin-bottom: 12px;
}

.shop-subtitle {
  max-width: 520px;
  margin: 0 auto;
  color: #b9c5d8;
  font-size: 16px;
  line-height: 1.65;
}

.shop-grid-section {
  padding: 62px 0 72px;
}

.shop-product-card img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  display: block;
}

.shop-product-card .metal {
  margin-top: 14px;
  margin-bottom: 7px;
  color: #8398b7;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 9px;
}

.shop-product-card h3 {
  font-size: 21px;
  line-height: 1.12;
  margin-bottom: 4px;
}

.shop-product-card p {
  font-size: 10px;
}

@media (max-width: 1199.98px) {
  .shop-hero h1 {
    font-size: 64px;
  }
}

@media (max-width: 991.98px) {
  .shop-product-card img {
    height: 240px;
  }

  .shop-product-card h3 {
    font-size: 19px;
  }
}

@media (max-width: 767.98px) {
  .shop-hero {
    padding: 54px 0 52px;
  }

  .shop-hero h1 {
    font-size: 48px;
  }

  .shop-product-card img {
    height: 208px;
  }

  .shop-product-card h3 {
    font-size: 18px;
  }
}

.categories-page {
  background: var(--bg-deep);
}

.categories-hero {
  background: #2a3b57;
  padding: 56px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.categories-hero .eyebrow {
  margin-bottom: 10px;
}

.categories-hero h1 {
  font-size: 67px;
  line-height: 1;
  margin-bottom: 12px;
}

.categories-list-section {
  padding: 50px 0 36px;
}

.category-feature-row {
  margin-bottom: 38px;
}

.feature-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.feature-copy {
  max-width: 560px;
}

.feature-copy .meta {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  margin-bottom: 10px;
}

.feature-copy h2 {
  font-size: 49px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.feature-copy .desc {
  color: #b6c2d5;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.feature-link {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  text-decoration: none;
  font-weight: 500;
}

.feature-link:hover {
  color: #ffa56a;
}

@media (min-width: 992px) {
  .reverse-desktop .col-lg-6:first-child {
    order: 2;
  }
}

@media (max-width: 991.98px) {
  .categories-hero h1 {
    font-size: 54px;
  }

  .feature-image {
    height: 310px;
  }

  .feature-copy h2 {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
  .categories-hero {
    padding: 48px 0 44px;
  }

  .categories-hero h1 {
    font-size: 42px;
  }

  .categories-list-section {
    padding: 36px 0 24px;
  }

  .feature-image {
    height: 230px;
  }

  .feature-copy h2 {
    font-size: 34px;
  }
}

.story-page {
  background: var(--bg-deep);
}

.story-page .page-container {
  max-width: 1130px;
}

.story-page .site-header {
  background: #1b2a43;
}

.story-page .brand-title {
  display: none;
}

.story-hero {
  background: #2a3b57;
  padding: 72px 0 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.story-hero .eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 6px;
}

.story-hero h1 {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 10px;
}

.story-content-section {
  padding: 62px 0 0;
}

.story-row {
  margin-bottom: 72px;
}

.story-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.story-copy h2 {
  font-size: 54px;
  line-height: 1.08;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.story-copy p {
  color: #9eacc3;
  font-size: 15px;
  line-height: 1.72;
  max-width: 520px;
}

.story-copy p + p {
  margin-top: 20px;
}

.story-stats {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 38px 0 34px;
}

.story-stat {
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1;
}

.story-stat-label {
  color: #9eabc3;
  font-size: 12px;
  margin-top: 8px;
}

@media (max-width: 991.98px) {
  .story-hero {
    padding: 54px 0 50px;
  }

  .story-image {
    height: 340px;
  }

  .story-copy h2 {
    font-size: 44px;
  }

  .story-copy p {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .story-page .page-container {
    max-width: 100%;
  }

  .story-hero h1 {
    font-size: 46px;
  }

  .story-content-section {
    padding: 42px 0 0;
  }

  .story-row {
    margin-bottom: 34px;
  }

  .story-image {
    height: 240px;
  }

  .story-copy h2 {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .story-copy p {
    font-size: 16px;
  }

  .story-stat {
    font-size: 38px;
  }
}

.contact-page {
  background: var(--bg-deep);
}

.contact-page .page-container {
  max-width: 1130px;
}

.contact-page .brand-title {
  display: none;
}

.contact-hero {
  background: #2a3b57;
  padding: 52px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-hero h1 {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 12px;
}

.contact-section {
  padding: 74px 0 62px;
}

.contact-copy h2 {
  font-size: 52px;
  margin-bottom: 18px;
}

.contact-copy > p {
  font-size: 18px;
  line-height: 1.7;
  color: #9eb0ca;
  max-width: 500px;
  margin-bottom: 34px;
}

.contact-info-list {
  display: grid;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex: 0 0 44px;
}

.contact-info-item h3 {
  font-size: 18px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-item p {
  color: #89a0bf;
  font-size: 16px;
  line-height: 1.45;
}

.contact-form label {
  display: block;
  font-size: 16px;
  color: #f2efe7;
  margin-bottom: 7px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #25354d;
  color: #dfe7f5;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  padding: 13px 16px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8fa2bf;
}

.contact-form textarea {
  resize: none;
  min-height: 195px;
}

.btn-send {
  background: var(--accent);
  border: 0;
  color: #14243b;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  font-weight: 600;
  padding: 13px 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-send:hover {
  background: #d96d22;
}

@media (max-width: 991.98px) {
  .contact-hero h1 {
    font-size: 56px;
  }

  .contact-section {
    padding: 56px 0 44px;
  }

  .contact-copy h2 {
    font-size: 46px;
  }

  .contact-copy > p {
    font-size: 17px;
    margin-bottom: 28px;
  }
}

@media (max-width: 767.98px) {
  .contact-page .page-container {
    max-width: 100%;
  }

  .contact-hero {
    padding: 44px 0 46px;
  }

  .contact-hero h1 {
    font-size: 44px;
  }

  .contact-copy h2 {
    font-size: 36px;
  }

  .contact-copy > p {
    font-size: 16px;
  }
}

.about-page {
  background: #1c2f48;
}

.about-page .page-container {
  max-width: 1130px;
}

.about-page .site-header {
  background: #1b2a42;
}

.about-page .brand-title {
  display: none;
}

.about-hero {
  background: #2a3d58;
  padding: 72px 0 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.about-hero .eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 6px;
}

.about-hero h1 {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 10px;
}

.about-content {
  padding: 72px 0 18px;
  background: #1d2f49;
}

.about-intro {
  max-width: 860px;
  margin: 0 auto 52px;
  color: #9cafc8;
  font-size: 17px;
  line-height: 1.8;
}

.about-main-image {
  width: 100%;
  height: 575px;
  object-fit: cover;
  display: block;
}

.about-values {
  margin-top: 26px;
  margin-bottom: 54px;
}

.about-values > [class*="col-"] {
  display: flex;
}

.about-value-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  min-height: 170px;
  text-align: center;
  padding: 20px 18px;
  background: rgba(16, 31, 52, 0.2);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-value-card h3 {
  font-size: 33px;
  margin-bottom: 10px;
}

.about-value-card p {
  color: #9fb1cb;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .about-hero {
    padding: 54px 0 50px;
  }

  .about-hero h1 {
    font-size: 56px;
  }

  .about-content {
    padding: 52px 0 10px;
  }

  .about-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .about-main-image {
    height: 430px;
  }

  .about-value-card h3 {
    font-size: 29px;
  }

  .about-value-card p {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .about-page .page-container {
    max-width: 100%;
  }

  .about-hero h1 {
    font-size: 44px;
  }

  .about-intro {
    font-size: 15px;
    line-height: 1.72;
  }

  .about-main-image {
    height: 280px;
  }

  .about-value-card {
    min-height: 140px;
    padding: 16px 14px;
  }

  .about-value-card h3 {
    font-size: 26px;
  }

  .about-value-card p {
    font-size: 15px;
  }
}
