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

:root {
  --gold: #b8975a;
  --gold-light: #d4b483;
  --black: #050505;
  --off-black: #11110f;
  --white: #ffffff;
  --paper: #f9f8f5;
  --text: #242424;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

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

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

.site-header {
  background: var(--black);
  color: var(--white);
}

.top-bar {
  align-items: center;
  border-bottom: 1px solid #25231f;
  display: flex;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 16%;
}

.contact-line,
.social-links,
.nav-actions {
  align-items: center;
  display: flex;
  gap: 18px;
}

.contact-line a,
.nav-actions a {
  color: var(--white);
  font-size: 12px;
}

.social-links a {
  align-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  font-size: 13px;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.main-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 36px 16% 34px;
}

.brand {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand img {
  width: 190px;
}

.brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 500;
}

.nav-actions a {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.outline-button,
.gold-button {
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 2px;
  padding: 13px 24px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.outline-button:hover,
.gold-button:hover {
  background: var(--gold);
  color: var(--black);
}

.search-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 28px;
  position: relative;
  width: 28px;
}

.search-button span {
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: block;
  height: 17px;
  width: 17px;
}

.search-button span::after {
  background: var(--gold);
  content: "";
  height: 9px;
  left: 18px;
  position: absolute;
  top: 18px;
  transform: rotate(-45deg);
  width: 2px;
}

.hero {
  display: grid;
  grid-template-columns: 30% 40% 30%;
  min-height: 520px;
}

.hero-panel {
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

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

.hero-copy::before {
  background: rgba(15, 14, 14, 0.68);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-overlay {
  align-items: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  inset: 0;
  margin: 0 auto;
  max-width: 660px;
  padding: 48px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.hero-overlay p {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
}

.hero-overlay h1,
.section-heading h2,
.intent-copy h2,
.collection-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-overlay h1 {
  font-size: clamp(24px, 2.4vw, 36px);
  margin-top: 4px;
}

.rotating-services {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  height: 58px;
  justify-content: center;
  line-height: 1.15;
  margin: 4px auto 12px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.rotating-services span {
  align-items: center;
  animation: rotateService 12s infinite;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translateY(24px);
  width: 100%;
}

.rotating-services span:nth-child(2) {
  animation-delay: 3s;
}

.rotating-services span:nth-child(3) {
  animation-delay: 6s;
}

.rotating-services span:nth-child(4) {
  animation-delay: 9s;
}

@keyframes rotateService {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  22% {
    opacity: 1;
    transform: translateY(0);
  }

  30%,
  100% {
    opacity: 0;
    transform: translateY(-24px);
  }
}

.hero-description {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto 34px;
}

.section-heading {
  padding: 58px 24px 50px;
  text-align: center;
}

.section-heading p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--text);
  font-size: clamp(32px, 3vw, 46px);
}

.section-heading h2::after {
  background: var(--gold);
  content: "";
  display: block;
  height: 1px;
  margin: 18px auto 0;
  width: 76px;
}

.intent-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.intent-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.intent-copy {
  background: var(--off-black);
  color: var(--white);
  padding: 10vw 8vw;
}

.intent-copy h2 {
  color: var(--gold);
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 32px;
}

.intent-copy p {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 650px;
}

.collections {
  background: var(--white);
  padding-bottom: 88px;
}

.collections-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 28px;
}

.collection-card {
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  padding: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.collection-card:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
}

.collection-card img {
  aspect-ratio: 1.3;
  object-fit: cover;
  width: 100%;
}

.collection-placeholder {
  aspect-ratio: 1.3;
  background: var(--paper);
  width: 100%;
}

.collection-body {
  padding: 20px 4px 2px;
}

.collection-body h3 {
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.collection-body time,
.collection-body a {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.collection-body time {
  color: var(--gold);
  margin-bottom: 22px;
}

.collection-hero {
  background: var(--off-black);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(340px, 42%) 1fr;
  min-height: 560px;
}

.collection-hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw 8vw;
}

.collection-hero-copy p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.collection-hero-copy h1,
.collection-story-copy h2,
.collection-feature-band h3,
.collection-contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.collection-hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.collection-hero-copy span {
  color: #dedbd4;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 560px;
}

.collection-hero-image {
  align-items: center;
  background: #f7f4ef;
  display: flex;
  min-height: 560px;
  overflow: hidden;
  padding: 42px;
}

.collection-hero-image img {
  object-fit: contain;
  width: 100%;
}

.collection-story {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
}

.collection-story-image {
  align-items: center;
  background: var(--paper);
  display: flex;
  padding: 5vw;
}

.collection-story-image img {
  width: 100%;
}

.collection-story-copy {
  background: var(--off-black);
  color: var(--white);
  padding: 9vw 8vw;
}

.collection-story-copy h2 {
  color: var(--gold);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  margin-bottom: 30px;
}

.collection-story-copy p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.collection-feature-band {
  background: var(--paper);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
}

.collection-feature-band article {
  background: var(--white);
  padding: 52px 42px;
  text-align: center;
}

.collection-feature-band h3 {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 16px;
}

.collection-feature-band p {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.65;
}

.collection-gallery {
  padding-bottom: 92px;
}

.collection-gallery-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 28px;
}

.collection-gallery figure {
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  padding: 14px;
}

.collection-gallery img {
  aspect-ratio: 1.24;
  object-fit: contain;
  width: 100%;
}

.collection-gallery figcaption {
  color: #4a4a4a;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.55;
  padding: 18px 4px 4px;
}

.collection-contact {
  background: var(--off-black);
  color: var(--white);
  padding: 72px 28px;
  text-align: center;
}

.collection-contact h2 {
  color: var(--gold);
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 18px;
}

.collection-contact p {
  color: #d8d8d8;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 34px;
  max-width: 720px;
}

.site-footer {
  background: var(--off-black);
  color: #d8d8d8;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  padding: 28px 20px;
  text-align: center;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .top-bar,
  .main-nav {
    padding-left: 28px;
    padding-right: 28px;
  }

  .main-nav,
  .nav-actions {
    align-items: center;
    flex-direction: column;
  }

  .hero,
  .intent-section,
  .collection-hero,
  .collection-story,
  .collection-feature-band {
    grid-template-columns: 1fr;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .collection-gallery-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .hero-panel {
    min-height: 360px;
  }

  .hero-panel:not(.hero-copy) {
    display: none;
  }
}

@media (max-width: 640px) {
  .top-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .contact-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand img {
    width: 160px;
  }

  .brand span {
    font-size: 14px;
    text-align: center;
  }

  .hero-overlay {
    padding: 32px 22px;
  }

  .intent-copy {
    padding: 56px 28px;
  }

  .collection-hero-copy,
  .collection-hero-image,
  .collection-story-image,
  .collection-story-copy {
    padding: 52px 28px;
  }

  .collection-hero,
  .collection-hero-image {
    min-height: auto;
  }

  .collection-feature-band article {
    padding: 42px 28px;
  }
}
