* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --black: #050403;
  --ink: #11100e;
  --charcoal: #191612;
  --espresso: #261c15;
  --ivory: #f7f1e6;
  --champagne: #dcc99f;
  --gold: #c79a42;
  --gold-bright: #f1d386;
  --oxblood: #4c1622;
  --olive: #66735f;
  --muted: #8a8172;
  --line-light: rgba(247, 241, 230, .16);
  --line-dark: rgba(17, 16, 14, .13);
  --shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 6.5%;
  color: var(--ivory);
  background: rgba(5, 4, 3, .88);
  border-bottom: 1px solid rgba(241, 211, 134, .24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(241, 211, 134, .55), 0 12px 34px rgba(0, 0, 0, .34);
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.02;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.46rem;
  font-weight: 700;
}

.brand em {
  color: var(--champagne);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: rgba(247, 241, 230, .82);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .4px;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  align-items: center;
  overflow: hidden;
  padding: 74px 6.5% 86px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 211, 134, .14), transparent 28%),
    linear-gradient(135deg, #030302 0%, #12100d 48%, #281b13 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 6.5%;
  right: 6.5%;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 211, 134, .55), transparent);
}

.hero-media {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: min(680px, 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: rgba(241, 211, 134, .18);
  filter: blur(45px);
}

.hero-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 34px 55px rgba(0, 0, 0, .58));
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: min(680px, 100%);
}

.hero-logo {
  width: clamp(118px, 16vw, 184px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 26px;
  box-shadow: 0 0 0 1px rgba(241, 211, 134, .64), 0 24px 60px rgba(0, 0, 0, .38);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold-bright);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 8vw, 7.2rem);
  line-height: .86;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.7vw, 5rem);
  line-height: .95;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 610px;
  color: rgba(247, 241, 230, .82);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .2px;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #100c07;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 38px rgba(199, 154, 66, .26);
}

.secondary {
  color: inherit;
  border: 1px solid rgba(247, 241, 230, .38);
  background: rgba(247, 241, 230, .06);
}

.secondary:hover {
  border-color: rgba(241, 211, 134, .86);
}

.signature-strip {
  display: flex;
  justify-content: center;
  padding: 18px 6.5%;
  color: var(--ivory);
  background: linear-gradient(90deg, var(--oxblood), #25100f 58%, var(--olive));
}

.signature-strip p {
  width: min(1080px, 100%);
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.25;
}

.section {
  padding: 92px 6.5%;
  scroll-margin-top: 100px;
}

.section-heading {
  width: min(980px, 100%);
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow),
.feature-copy p,
.collection-notes p,
.atelier-copy p,
.contact p {
  color: var(--muted);
}

.collection {
  background:
    linear-gradient(180deg, #fffaf0 0%, var(--ivory) 100%);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 24px;
  align-items: stretch;
}

.feature-product {
  display: grid;
  grid-template-columns: minmax(300px, .96fr) minmax(280px, .82fr);
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
  border: 1px solid rgba(199, 154, 66, .45);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-product img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.feature-copy {
  align-self: end;
  padding: clamp(26px, 4vw, 46px);
}

.feature-copy p {
  color: rgba(247, 241, 230, .74);
}

.feature-copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: .98;
}

.item-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.collection-notes {
  display: grid;
  gap: 14px;
}

.collection-notes article {
  min-height: 160px;
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .58);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 12px 40px rgba(17, 16, 14, .06);
}

.collection-notes span {
  display: block;
  margin-bottom: 13px;
  color: var(--oxblood);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.atelier {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 48px;
  align-items: start;
  padding: 96px 6.5%;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(5, 4, 3, .92), rgba(5, 4, 3, .7)),
    url("casa-noble-tray.png") center / cover fixed;
  scroll-margin-top: 100px;
}

.atelier-copy {
  max-width: 640px;
}

.atelier-copy p {
  color: rgba(247, 241, 230, .76);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.process-list article {
  min-height: 240px;
  padding: 24px 20px;
  border-top: 3px solid var(--gold);
  background: rgba(247, 241, 230, .08);
  border-radius: 0 0 8px 8px;
  backdrop-filter: blur(14px);
}

.process-list strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.process-list p {
  color: rgba(247, 241, 230, .73);
}

.care {
  background: #f2efe4;
}

.care-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.care-list p {
  min-height: 150px;
  margin: 0;
  padding: 22px;
  border-top: 3px solid var(--olive);
  background: rgba(255, 255, 255, .62);
  border-radius: 0 0 8px 8px;
  color: #3f3b35;
  font-weight: 800;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 92px 6.5%;
  color: var(--ivory);
  background:
    radial-gradient(circle at 90% 15%, rgba(241, 211, 134, .15), transparent 30%),
    linear-gradient(135deg, var(--black), var(--charcoal));
  scroll-margin-top: 100px;
}

.contact > div:first-child {
  width: min(780px, 100%);
}

.contact p {
  color: rgba(247, 241, 230, .74);
}

.large {
  min-width: 220px;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px 6.5%;
  color: #8a8172;
  background: var(--ivory);
  border-top: 1px solid var(--line-dark);
}

footer img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

footer p {
  margin: 0;
}

footer p:first-of-type {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero-media {
    grid-column: 1;
    opacity: .34;
    position: absolute;
    inset: 6% -8% auto auto;
    width: min(620px, 88vw);
  }

  .hero-content {
    grid-column: 1;
  }

  .showcase,
  .feature-product,
  .atelier,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-product img {
    min-height: 420px;
  }

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

@media (max-width: 780px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 14px 6%;
  }

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  nav a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(247, 241, 230, .14);
  }

  .hero {
    min-height: auto;
    padding: 52px 6% 76px;
  }

  .hero-media {
    inset: 12% -22% auto auto;
    width: 108vw;
    opacity: .24;
  }

  .hero-logo {
    width: 122px;
  }

  .section,
  .atelier,
  .contact {
    padding: 66px 6%;
    scroll-margin-top: 30px;
  }

  .feature-product img {
    min-height: 330px;
  }

  .process-list,
  .care-list {
    grid-template-columns: 1fr;
  }

  .collection-notes article,
  .care-list p,
  .process-list article {
    min-height: 0;
  }

  .actions,
  .contact-actions {
    width: 100%;
  }

  .button,
  .large {
    width: 100%;
  }

  footer {
    grid-template-columns: auto 1fr;
  }

  footer p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .brand span {
    max-width: 190px;
  }

  h1 {
    font-size: 3.1rem;
  }
}
