﻿:root {
  --obsidian: #070706;
  --charcoal: #181714;
  --ivory: #f7f4ee;
  --ivory-deep: #ebe4d8;
  --emerald: #0f332b;
  --gold: #b89a52;
  --stone: #d8d1c4;
  --olive-grey: #74786c;
  --white: #ffffff;
  --black-line: rgba(7, 7, 6, 0.12);
  --white-line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--obsidian);
  font-family: "Figtree", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
}

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

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

p {
  line-height: 1.75;
}

.offer-ticker {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  background: var(--obsidian);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  min-height: 40px;
  text-transform: uppercase;
}

.ticker-arrow {
  display: grid;
  place-items: center;
  height: 40px;
  color: var(--gold);
  border-right: 1px solid var(--white-line);
}

.ticker-arrow:last-child {
  border-right: 0;
  border-left: 1px solid var(--white-line);
}

.ticker-window {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  animation: ticker-slide 34s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 34px;
}

.ticker-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  background: var(--gold);
  transform: rotate(45deg);
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.offer-ticker i {
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.94);
  border-bottom: 1px solid var(--black-line);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 128px;
  padding: 0;
}

.header-shell {
  position: relative;
  min-height: 128px;
}

.navbar-brand {
  width: 132px;
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 132px;
  height: auto;
}

.navbar-brand-mobile {
  display: none;
}

.navbar-brand-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.navbar-collapse {
  position: relative;
  display: flex !important;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.navbar-nav,
.nav-left,
.nav-right {
  align-items: center;
  gap: 8px;
}

.nav-left {
  width: calc(50% - 118px);
  justify-content: flex-start;
  padding-right: 0;
}

.nav-right {
  width: calc(50% - 118px);
  justify-content: flex-end;
  padding-left: 0;
}

.nav-link {
  position: relative;
  color: var(--obsidian);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  padding: 18px 12px !important;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--emerald);
}

.nav-link:hover::after,
.nav-link:focus::after {
  transform: scaleX(1);
}

.newsletter .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--gold);
  color: var(--obsidian);
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 0 22px;
  text-transform: uppercase;
}

.newsletter .btn:hover,
.newsletter .btn:focus {
  background: var(--obsidian);
  border-color: var(--obsidian);
  color: var(--white);
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  border: 1px solid var(--black-line);
  border-radius: 4px;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(184, 154, 82, 0.28);
}

.navbar-toggler span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--obsidian);
}

.hero-home {
  background: var(--obsidian);
  border-bottom: 1px solid var(--black-line);
}

.hero-home__link {
  display: block;
  width: 100%;
}

.hero-home picture,
.hero-home img {
  display: block;
  width: 100%;
}

.hero-home img {
  height: auto;
}

.signature-categories {
  position: relative;
  padding: 92px 0 104px;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 7, 6, 0.045) 1px, transparent 1px),
    var(--ivory);
  background-size: 120px 120px;
}

.signature-categories::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 154, 82, 0.72), transparent);
}

.signature-heading {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signature-heading h1 {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--obsidian);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.08;
}

.signature-heading p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--olive-grey);
  font-size: 16px;
}

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

.category-tile {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  isolation: isolate;
}

.category-tile--large {
  grid-column: span 2;
  min-height: 680px;
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.02) 0%, rgba(7, 7, 6, 0.12) 44%, rgba(7, 7, 6, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 7, 6, 0.28), transparent 52%);
  pointer-events: none;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.category-count {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.category-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
}

.category-content p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-content h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.05;
}

.category-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.category-tile:hover img,
.category-tile:focus img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.055);
}

.category-tile:hover::after,
.category-tile:focus::after,
.category-tile:hover .category-content span,
.category-tile:focus .category-content span {
  opacity: 1;
  transform: translateY(0);
}

.about-atelier {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(184, 154, 82, 0.18), transparent 24%),
    linear-gradient(135deg, var(--obsidian), var(--charcoal) 58%, #0b1714);
  color: var(--white);
}

.about-atelier::before {
  content: "PARV";
  position: absolute;
  right: -24px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 230px;
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}

.about-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.about-copy {
  max-width: 720px;
}

.about-copy h1 {
  margin: 0 0 26px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.05;
}

.about-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  margin-bottom: 18px;
}

.about-signature {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.about-signature span {
  height: 1px;
  background: var(--gold);
}

.about-signature p {
  margin: 0;
  color: var(--stone);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
}

.about-visual {
  position: relative;
  min-height: 720px;
}

.about-image-card {
  position: absolute;
  overflow: hidden;
  background: var(--obsidian);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-image-card--main {
  top: 0;
  right: 0;
  width: 70%;
  height: 88%;
}

.about-image-card--detail {
  left: 0;
  bottom: 0;
  width: 46%;
  height: 48%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.about-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  left: 34%;
  bottom: 15%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  text-align: center;
  background: var(--ivory);
  color: var(--obsidian);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.about-badge strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.about-badge span {
  display: block;
  max-width: 92px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-values {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 84px;
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.about-values > div {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.about-values span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.about-values h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}

.about-values p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.featured-arrivals {
  padding: 104px 0 112px;
  background: var(--ivory);
  color: var(--obsidian);
}

.featured-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.featured-head h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.06;
}

.featured-head > p {
  margin: 0 0 10px;
  color: var(--olive-grey);
  font-size: 16px;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.featured-hero-card {
  position: relative;
  display: block;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.featured-hero-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.featured-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 7, 6, 0.84) 100%),
    linear-gradient(90deg, rgba(7, 7, 6, 0.34), transparent 58%);
}

.featured-hero-content {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  z-index: 1;
}

.featured-hero-content span,
.featured-product p {
  display: block;
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.featured-hero-content h2 {
  max-width: 520px;
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.05;
}

.featured-hero-content p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.featured-hero-card:hover img,
.featured-hero-card:focus img {
  transform: scale(1.045);
}

.featured-list {
  display: grid;
  gap: 18px;
}

.featured-product {
  position: relative;
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  gap: 24px;
  min-height: 248px;
  padding: 22px 22px 22px 74px;
  align-items: center;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(7, 7, 6, 0.1);
  color: var(--obsidian);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.featured-product::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.featured-product img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  background: var(--ivory-deep);
}

.featured-index {
  position: absolute;
  left: 24px;
  top: 28px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.featured-product h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.featured-product div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.featured-product:hover,
.featured-product:focus {
  background: var(--white);
  border-color: rgba(184, 154, 82, 0.48);
  transform: translateY(-3px);
}

.featured-product:hover::after,
.featured-product:focus::after {
  border-color: rgba(184, 154, 82, 0.4);
}

.craftsmanship-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: var(--obsidian);
  color: var(--white);
}

.craftsmanship-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 118px 118px;
  pointer-events: none;
}

.craftsmanship-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  gap: 72px;
  align-items: center;
  margin-bottom: 64px;
}

.craftsmanship-intro {
  max-width: 820px;
}

.craftsmanship-intro h1 {
  margin: 0 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.05;
}

.craftsmanship-intro > p:not(.section-kicker) {
  max-width: 700px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.craftsmanship-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.craftsmanship-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.craftsmanship-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  opacity: 0.92;
}

.craftsmanship-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184, 154, 82, 0.38);
  pointer-events: none;
}

.craftsmanship-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.craftsmanship-card {
  min-height: 340px;
  margin: 0;
  padding: 34px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  background: rgba(255, 255, 255, 0.025);
  transition: background 0.3s ease, transform 0.3s ease;
}

.craftsmanship-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.craftsmanship-card i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  color: var(--gold);
  border: 1px solid rgba(184, 154, 82, 0.46);
  border-radius: 50%;
  font-size: 20px;
}

.craftsmanship-card h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
}

.craftsmanship-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.craftsmanship-card:hover {
  background: rgba(184, 154, 82, 0.08);
  transform: translateY(-4px);
}

.appointment-section {
  padding: 104px 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 7, 6, 0.046) 1px, transparent 1px),
    var(--ivory);
  background-size: 120px 120px;
  color: var(--obsidian);
}

.appointment-panel {
  position: relative;
  overflow: hidden;
  padding: 72px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 7, 6, 0.12);
}

.appointment-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 154, 82, 0.38);
  pointer-events: none;
}

.appointment-panel::after {
  content: "Appointment";
  position: absolute;
  right: -10px;
  top: -14px;
  color: rgba(7, 7, 6, 0.04);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 132px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.appointment-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.appointment-intro h1 {
  max-width: 790px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.06;
}

.appointment-intro > p:not(.section-kicker) {
  margin: 0 0 10px;
  color: var(--olive-grey);
}

.appointment-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.appointment-card {
  position: relative;
  min-height: 330px;
  padding: 38px;
  background: var(--obsidian);
  color: var(--white);
  border: 1px solid rgba(7, 7, 6, 0.14);
  transition: background 0.3s ease, transform 0.3s ease;
}

.appointment-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
}

.appointment-card i {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: var(--gold);
  border: 1px solid rgba(184, 154, 82, 0.5);
  border-radius: 50%;
  font-size: 21px;
}

.appointment-card h2 {
  max-width: 420px;
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
}

.appointment-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.appointment-card:hover,
.appointment-card:focus {
  background: var(--emerald);
  transform: translateY(-4px);
}

.appointment-contact {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 28px;
  background: var(--ivory);
  border: 1px solid rgba(7, 7, 6, 0.1);
}

.appointment-contact p {
  margin: 0;
  color: var(--olive-grey);
  font-size: 14px;
  font-weight: 700;
}

.appointment-contact div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.appointment-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--obsidian);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.appointment-contact a i {
  color: var(--gold);
}

.client-reflections {
  padding: 104px 0;
  background: var(--white);
  color: var(--obsidian);
}

.reflections-heading {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.reflections-heading h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.08;
}

.reflections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reflection-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  background: var(--ivory);
  border: 1px solid rgba(7, 7, 6, 0.1);
}

.reflection-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.reflection-card > i {
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.reflection-card p {
  margin: 34px 0;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.45;
}

.reflection-card h2 {
  margin: 0 0 4px;
  color: var(--obsidian);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.reflection-card span {
  color: var(--olive-grey);
  font-size: 14px;
}

.reflection-card:hover::after {
  border-color: rgba(184, 154, 82, 0.48);
}

.trust-strip {
  background: var(--emerald);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 150px;
  padding: 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--gold);
  border: 1px solid rgba(184, 154, 82, 0.48);
  border-radius: 50%;
  font-size: 20px;
}

.trust-grid h2 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1;
}

.site-footer {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(184, 154, 82, 0.16), transparent 26%),
    linear-gradient(135deg, var(--obsidian), #0b1512 72%);
  color: rgba(255, 255, 255, 0.74);
}

.footer-marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 96px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid var(--white-line);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.footer-marquee span::after {
  content: "/";
  margin-left: 34px;
  color: var(--gold);
}

.footer-marquee span:last-child::after {
  content: "";
  margin-left: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.75fr 0.95fr 1.4fr;
  gap: 54px;
  padding: 84px 0 62px;
}

.footer-brand img {
  width: 158px;
  margin-bottom: 32px;
}

.footer-brand p,
.footer-contact p {
  max-width: 360px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-column h2,
.footer-contact h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: "Figtree", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column h2::after,
.footer-contact h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-top: 12px;
  background: var(--gold);
}

.footer-column a,
.footer-contact a {
  display: table;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 0.25s ease;
}

.footer-column a:hover,
.footer-column a:focus,
.footer-contact a:hover,
.footer-contact a:focus {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  border: 1px solid var(--white-line);
  border-radius: 4px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.social-links a:hover,
.social-links a:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
}

.newsletter label {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.newsletter .input-group {
  max-width: 410px;
}

.newsletter .form-control {
  min-height: 48px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-right: 0;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.newsletter .form-control:focus {
  border-color: var(--gold);
  box-shadow: none;
}

.newsletter .btn {
  border-radius: 0 4px 4px 0;
}

.footer-bottom {
  display: block;
  padding: 26px 0;
  border-top: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1199.98px) {
  .navbar {
    min-height: 84px;
  }

  .navbar > .container-fluid {
    justify-content: space-between;
  }

  .navbar-brand,
  .navbar-brand img {
    width: 126px;
  }

  .navbar-brand-mobile {
    display: block;
  }

  .navbar-brand-center {
    display: none;
  }

  .navbar-collapse {
    display: none !important;
    padding: 26px 0 30px;
    border-top: 1px solid var(--black-line);
  }

  .navbar-collapse.show {
    display: block !important;
  }

  .navbar-nav {
    align-items: flex-start;
    gap: 0;
  }

  .nav-left,
  .nav-right {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-link {
    width: 100%;
    padding: 15px 0 !important;
    font-size: 14px;
  }

  .nav-link::after {
    left: 0;
    right: auto;
    width: 54px;
  }

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

  .signature-categories {
    padding: 76px 0 84px;
  }

  .signature-heading h1 {
    font-size: 44px;
  }

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

  .category-tile,
  .category-tile--large {
    grid-column: span 1;
    min-height: 560px;
  }

  .about-atelier {
    padding: 86px 0;
  }

  .about-shell {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .about-visual {
    min-height: 660px;
  }

  .about-values {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .featured-arrivals {
    padding: 84px 0 92px;
  }

  .featured-head,
  .featured-layout {
    grid-template-columns: 1fr;
  }

  .featured-head h1 {
    font-size: 44px;
  }

  .featured-hero-card {
    min-height: 680px;
  }

  .craftsmanship-section {
    padding: 86px 0;
  }

  .craftsmanship-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .craftsmanship-intro h1 {
    font-size: 44px;
  }

  .craftsmanship-image {
    min-height: 620px;
  }

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

  .appointment-section {
    padding: 84px 0;
  }

  .appointment-panel {
    padding: 54px;
  }

  .appointment-panel::after {
    font-size: 86px;
  }

  .appointment-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .appointment-intro h1 {
    font-size: 44px;
  }

  .appointment-contact {
    display: block;
  }

  .appointment-contact div {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .client-reflections {
    padding: 84px 0;
  }

  .reflections-heading h1 {
    font-size: 44px;
  }

  .reflections-grid {
    grid-template-columns: 1fr;
  }

  .reflection-card {
    min-height: auto;
  }

  .trust-grid > div {
    display: grid;
    gap: 14px;
  }

  .trust-grid h2 {
    font-size: 23px;
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .navbar {
    min-height: 76px;
  }

  .navbar-brand,
  .navbar-brand img {
    width: 108px;
  }

  .signature-categories {
    padding: 58px 0 66px;
    background-size: 72px 72px;
  }

  .signature-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .signature-heading h1 {
    font-size: 34px;
  }

  .signature-heading p:last-child {
    font-size: 15px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-tile,
  .category-tile--large {
    min-height: 520px;
  }

  .category-count,
  .category-content {
    left: 22px;
    right: 22px;
  }

  .category-count {
    top: 22px;
  }

  .category-content {
    bottom: 22px;
  }

  .category-content h2 {
    font-size: 31px;
  }

  .category-content span {
    opacity: 1;
    transform: translateY(0);
  }

  .about-atelier {
    padding: 64px 0;
  }

  .about-atelier::before {
    font-size: 104px;
    right: -8px;
    bottom: 24px;
  }

  .about-copy h1 {
    font-size: 34px;
  }

  .about-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

  .about-signature {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
  }

  .about-signature p {
    font-size: 18px;
  }

  .about-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .about-image-card,
  .about-image-card--main,
  .about-image-card--detail {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .about-image-card img {
    aspect-ratio: 4 / 5;
  }

  .about-badge {
    left: auto;
    right: 18px;
    bottom: calc(50% - 76px);
    width: 118px;
    height: 118px;
  }

  .about-badge strong {
    font-size: 28px;
  }

  .about-badge span {
    max-width: 78px;
    font-size: 10px;
  }

  .about-values {
    margin-top: 42px;
  }

  .about-values > div {
    min-height: auto;
    padding: 26px;
  }

  .about-values h2 {
    font-size: 24px;
  }

  .featured-arrivals {
    padding: 64px 0 70px;
  }

  .featured-head {
    gap: 18px;
    margin-bottom: 34px;
  }

  .featured-head h1 {
    font-size: 34px;
  }

  .featured-head > p {
    font-size: 15px;
  }

  .featured-layout {
    gap: 16px;
  }

  .featured-hero-card {
    min-height: 560px;
  }

  .featured-hero-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .featured-hero-content h2 {
    font-size: 34px;
  }

  .featured-product {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    min-height: 190px;
    padding: 18px 18px 18px 54px;
  }

  .featured-index {
    left: 18px;
    top: 22px;
    font-size: 22px;
  }

  .featured-product h2 {
    font-size: 22px;
  }

  .craftsmanship-section {
    padding: 64px 0;
  }

  .craftsmanship-section::before {
    background-size: 72px 72px;
  }

  .craftsmanship-shell {
    gap: 34px;
    margin-bottom: 42px;
  }

  .craftsmanship-intro h1 {
    font-size: 34px;
  }

  .craftsmanship-intro > p:not(.section-kicker) {
    font-size: 15px;
  }

  .craftsmanship-image {
    min-height: 520px;
  }

  .craftsmanship-grid {
    grid-template-columns: 1fr;
  }

  .craftsmanship-card {
    min-height: auto;
    padding: 28px;
  }

  .craftsmanship-card span {
    margin-bottom: 32px;
  }

  .craftsmanship-card h2 {
    font-size: 26px;
  }

  .appointment-section {
    padding: 64px 0;
    background-size: 72px 72px;
  }

  .appointment-panel {
    padding: 32px 22px;
  }

  .appointment-panel::before {
    inset: 10px;
  }

  .appointment-panel::after {
    display: none;
  }

  .appointment-intro {
    margin-bottom: 32px;
  }

  .appointment-intro h1 {
    font-size: 34px;
  }

  .appointment-options {
    grid-template-columns: 1fr;
  }

  .appointment-card {
    min-height: auto;
    padding: 28px;
  }

  .appointment-card span {
    margin-bottom: 34px;
  }

  .appointment-card h2 {
    font-size: 28px;
  }

  .appointment-contact {
    padding: 22px;
  }

  .appointment-contact div {
    display: grid;
    gap: 12px;
  }

  .client-reflections {
    padding: 64px 0;
  }

  .reflections-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .reflections-heading h1 {
    font-size: 34px;
  }

  .reflection-card {
    padding: 28px;
  }

  .reflection-card p {
    margin: 28px 0;
    font-size: 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-grid > div {
    min-height: 126px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .footer-marquee {
    justify-content: flex-start;
    overflow: hidden;
    font-size: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 42px;
  }

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

  .footer-bottom {
    display: block;
  }
}
