:root {
  --ink: #21160f;
  --muted: #78695e;
  --cream: #fff8ed;
  --cream-2: #f8eddb;
  --sand: #e6c79c;
  --cocoa: #6f3f25;
  --terracotta: #b95d34;
  --olive: #687a3c;
  --gold: #d59a3d;
  --white: #ffffff;
  --border: rgba(33, 22, 15, 0.12);
  --shadow: 0 24px 60px rgba(72, 45, 25, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

/* Promo */
.promo-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
}

.promo-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.promo-inner i {
  color: var(--sand);
  margin-right: 5px;
}

/* Navbar */
.gg-navbar {
  background: rgba(255, 248, 237, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.3rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--sand);
  font-family: "Fraunces", serif;
  font-weight: 800;
}

.nav-link {
  color: var(--muted);
  font-weight: 700;
  padding: 12px 4px !important;
  position: relative;
}

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

.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 6px;
  height: 2px;
  background: var(--terracotta);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
}

.icon-btn:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-dark-soft {
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  border: 1px solid var(--ink);
}

.btn-dark-soft:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.btn-primary-soft {
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
  border: 0;
  box-shadow: 0 15px 35px rgba(185, 93, 52, 0.26);
}

.btn-primary-soft:hover {
  background: var(--cocoa);
  color: var(--white);
}

.btn-link-soft {
  color: var(--ink);
  font-weight: 800;
  padding: 12px 0;
}

.btn-link-soft:hover {
  color: var(--terracotta);
}

.btn-outline-dark-soft {
  color: var(--ink);
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 800;
}

.btn-outline-dark-soft:hover {
  background: var(--ink);
  color: var(--white);
}

/* Hero */
.editorial-hero {
  padding: 28px 0 80px;
}

.hero-grid {
  min-height: 650px;
  border: 1px solid var(--border);
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-copy {
  height: 100%;
  padding: clamp(38px, 7vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(213, 154, 61, 0.18), transparent 24%),
    linear-gradient(135deg, #fffaf2, #f7ead7);
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  margin: 22px 0;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-mini-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.hero-mini-row div {
  flex: 1;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
}

.hero-mini-row strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--terracotta);
}

.hero-mini-row span {
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 540px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-note i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--olive);
  color: var(--white);
}

.hero-note small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.hero-note strong {
  display: block;
}

/* Section Headings */
.section-heading {
  margin-bottom: 36px;
}

.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading span {
  display: inline-block;
  color: var(--terracotta);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* Collections */
.collections-section {
  padding: 90px 0 70px;
}

.collection-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.collection-pill {
  display: flex;
  gap: 14px;
  align-items: center;
  border-radius: 28px;
  background: var(--white);
  padding: 14px;
  border: 1px solid var(--border);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(72, 45, 25, 0.07);
  transition: 0.28s ease;
}

.collection-pill:hover {
  transform: translateY(-6px);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.collection-pill img {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  object-fit: cover;
}

.collection-pill strong {
  display: block;
  font-weight: 900;
}

.collection-pill span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Signature */
.signature-section {
  padding: 80px 0 100px;
  background: #fffaf2;
}

.feature-product {
  position: relative;
  min-height: 610px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-product img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 22, 15, 0.82), transparent 70%);
}

.feature-product-content {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
  color: var(--white);
}

.feature-product-content span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 800;
}

.feature-product-content h3 {
  font-size: 2.4rem;
  line-height: 1;
}

.feature-product-content p {
  color: rgba(255, 255, 255, 0.82);
}

.product-tile {
  border-radius: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(72, 45, 25, 0.08);
  height: 100%;
  transition: 0.28s ease;
}

.product-tile:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.product-tile:hover .product-img img {
  transform: scale(1.06);
}

.product-img span {
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.product-info {
  padding: 22px;
}

.product-info small {
  color: var(--terracotta);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-info h5 {
  font-weight: 900;
  margin: 8px 0 18px;
}

.tile-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tile-bottom strong {
  font-size: 1.35rem;
  color: var(--cocoa);
}

.tile-bottom button,
.card-price button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
}

/* Brand Story */
.brand-story {
  padding: 100px 0;
}

.story-image-stack {
  position: relative;
  min-height: 560px;
}

.story-main {
  width: 82%;
  height: 520px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.story-small {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 45%;
  height: 260px;
  object-fit: cover;
  border-radius: 30px;
  border: 10px solid var(--cream);
  box-shadow: var(--shadow);
}

.promise-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.promise-list > div {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px;
}

.promise-list i {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--olive);
  font-size: 1.3rem;
}

.promise-list h5 {
  font-weight: 900;
}

.promise-list p {
  color: var(--muted);
  margin: 0;
}

/* CTA */
.cta-band {
  padding: 20px 0 100px;
}

.cta-card {
  border-radius: 40px;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(33, 22, 15, 0.92), rgba(111, 63, 37, 0.9)),
    url("https://images.unsplash.com/photo-1606914469633-bd39206ea739?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-card span {
  color: var(--sand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 8px 0;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* Shop Page */
.boutique-shop-header {
  padding: 82px 0 42px;
  background:
    radial-gradient(circle at 20% 10%, rgba(213, 154, 61, 0.16), transparent 26%),
    linear-gradient(135deg, #fff8ed, #f8ead4);
}

.boutique-shop-header h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin: 12px 0;
}

.boutique-shop-header p {
  color: var(--muted);
  font-size: 1.08rem;
}

.shop-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  box-shadow: 0 18px 45px rgba(72, 45, 25, 0.08);
}

.shop-search-box i {
  color: var(--terracotta);
}

.shop-search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: 600;
}

.shop-search-box button {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.category-tabs-section {
  padding: 24px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.category-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-tabs a {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
}

.category-tabs a.active,
.category-tabs a:hover {
  background: var(--ink);
  color: var(--white);
}

.shop-layout {
  padding: 70px 0 100px;
}

.shop-feature-panel {
  position: sticky;
  top: 105px;
  min-height: 430px;
  border-radius: 36px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(to top, rgba(33, 22, 15, 0.94), rgba(33, 22, 15, 0.38)),
    url("https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=700&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.shop-feature-panel span {
  color: var(--sand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.shop-feature-panel h2 {
  font-size: 2.6rem;
  line-height: 1;
  margin: 12px 0;
}

.shop-feature-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.panel-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-price strong {
  font-size: 2rem;
  font-family: "Fraunces", serif;
}

.panel-price del {
  color: rgba(255, 255, 255, 0.6);
}

.mini-filter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(72, 45, 25, 0.07);
}

.mini-filter-card h5 {
  font-weight: 900;
  margin-bottom: 18px;
}

.mini-filter-card label {
  font-weight: 800;
  margin-bottom: 8px;
}

.form-select {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 12px 14px;
}

.filter-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tags button {
  border: 0;
  background: var(--cream);
  color: var(--cocoa);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}

.shop-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.shop-results-header h4 {
  font-weight: 900;
  margin-bottom: 4px;
}

.shop-results-header p {
  color: var(--muted);
  margin: 0;
}

.horizontal-product-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 14px;
  height: 100%;
  box-shadow: 0 18px 45px rgba(72, 45, 25, 0.07);
  transition: 0.28s ease;
}

.horizontal-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.horizontal-product-card img {
  width: 150px;
  height: 170px;
  object-fit: cover;
  border-radius: 22px;
}

.horizontal-product-card span {
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 900;
}

.horizontal-product-card h5 {
  font-weight: 900;
  margin: 8px 0;
}

.horizontal-product-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.card-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price strong {
  font-size: 1.35rem;
  color: var(--cocoa);
}

.shop-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 46px;
}

.shop-pagination a {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 900;
}

.shop-pagination a.active,
.shop-pagination a:hover {
  background: var(--ink);
  color: var(--white);
}

.shop-pagination a.disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* Footer */
.footer {
  padding: 70px 0 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer .logo-mark {
  background: var(--sand);
  color: var(--ink);
}

.footer-brand,
.footer h6 {
  color: var(--white);
  font-weight: 900;
}

.footer p {
  line-height: 1.8;
  margin-top: 14px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 38px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
}

.footer-bottom div a {
  margin: 0;
  font-size: 1.15rem;
}

/* Floating Cart */
.floating-cart {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  z-index: 99;
  box-shadow: 0 18px 45px rgba(185, 93, 52, 0.35);
}

.floating-cart:hover {
  color: var(--white);
  background: var(--ink);
}

.floating-cart span {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1199px) {
  .collection-scroll {
    grid-template-columns: repeat(2, 1fr);
  }

  .horizontal-product-card {
    grid-template-columns: 130px 1fr;
  }

  .horizontal-product-card img {
    width: 130px;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

  .shop-feature-panel {
    position: relative;
    top: 0;
  }

  .story-image-stack {
    min-height: 470px;
  }

  .story-main {
    height: 430px;
  }

  .cta-card {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .promo-inner {
    gap: 12px;
    justify-content: start;
  }

  .editorial-hero {
    padding: 18px 0 60px;
  }

  .hero-grid {
    border-radius: 28px;
  }

  .hero-copy {
    padding: 34px 24px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-mini-row div {
    min-width: 100%;
  }

  .collection-scroll {
    grid-template-columns: 1fr;
  }

  .feature-product {
    min-height: 500px;
  }

  .horizontal-product-card {
    grid-template-columns: 1fr;
  }

  .horizontal-product-card img {
    width: 100%;
    height: 230px;
  }

  .shop-results-header {
    flex-direction: column;
    align-items: start;
  }

  .shop-search-box {
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .shop-search-box button {
    width: 100%;
  }

  .story-small {
    display: none;
  }

  .story-main {
    width: 100%;
  }

  .cta-card {
    padding: 30px;
    border-radius: 28px;
  }
}
