:root {
  color-scheme: light;
  --ivory: #fbf8f4;
  --paper: #fffdf9;
  --ink: #181412;
  --muted: #746a64;
  --line: rgba(64, 43, 37, 0.12);
  --blush: #e9b9bd;
  --rose: #a96d75;
  --gold: #c7a15d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

a,
button {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease,
    box-shadow 180ms ease;
}

.announcement-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: #fffaf8;
  color: #5c504b;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-bar span:nth-child(2) {
  color: var(--rose);
}

.announcement-bar a {
  justify-self: end;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(24, 20, 18, 0.28);
}

.announcement-bar a:hover {
  color: var(--rose);
  border-color: var(--rose);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) auto minmax(9rem, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 1.15rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(64, 43, 37, 0.08);
  background: rgba(251, 248, 244, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 0.9;
}

.brand small {
  margin-top: 0.4rem;
  color: var(--rose);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.desktop-nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  white-space: nowrap;
}

.desktop-nav a {
  color: #332b27;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--rose);
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
}

.header-icons button,
.header-icons a {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
}

.header-icons button:hover,
.header-icons a:hover {
  border-color: var(--line);
  background: #fffdf9;
  transform: translateY(-1px);
}

.header-icons svg {
  width: 1.12rem;
  height: 1.12rem;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 1.12fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem) clamp(4rem, 7vw, 6.5rem);
}

.hero-copy {
  max-width: 41rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 8.5vw, 7.65rem);
  line-height: 0.88;
}

.hero-body {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.85;
}

.hero-subheadline {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.08;
}

.button-row,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.82rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  border-color: var(--rose);
  background: var(--rose);
  color: #fffaf8;
  box-shadow: 0 16px 36px rgba(169, 109, 117, 0.22);
}

.btn-primary:hover {
  border-color: #925b63;
  background: #925b63;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: clamp(29rem, 54vw, 42rem);
  border: 1px solid rgba(167, 114, 105, 0.18);
  border-radius: 0;
  background: linear-gradient(135deg, #fffdf9 0%, #f8ecea 52%, #fbf8f4 100%);
  box-shadow: 0 34px 90px rgba(97, 62, 58, 0.13);
}

.hero-image-wrap::before {
  position: absolute;
  inset: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 54%;
  transform: scale(1.02);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
}

.trust-card {
  min-height: 15rem;
  padding: clamp(1.4rem, 2.3vw, 2.25rem);
  border-right: 1px solid var(--line);
}

.trust-card:last-child {
  border-right: 0;
}

.trust-card svg {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--rose);
}

.trust-card h3,
.collection-copy h3,
.service-strip h3,
.color-card h3 {
  margin: 1.2rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.trust-card p,
.collection-copy p,
.service-strip p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.expertise-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: clamp(4.5rem, 7vw, 6.5rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdf9 0%, var(--ivory) 100%);
}

.expertise-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.96;
}

.expertise-copy p:not(.eyebrow) {
  max-width: 44rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

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

.expertise-grid article {
  min-height: 12rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.78);
}

.expertise-grid h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.expertise-grid p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.content-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.96;
}

.section-heading p {
  margin: 0.9rem auto 0;
  color: var(--rose);
  font-size: 1rem;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(7rem, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.color-card {
  min-width: 0;
  padding: 1rem 0.8rem 1.25rem;
  border: 1px solid rgba(64, 43, 37, 0.1);
  background: rgba(255, 253, 249, 0.74);
  text-align: center;
}

.color-card:hover,
.collection-card:hover {
  border-color: rgba(169, 109, 117, 0.34);
  box-shadow: 0 20px 48px rgba(83, 58, 51, 0.1);
  transform: translateY(-4px);
}

.gem-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: radial-gradient(circle, #fff 0%, rgba(255, 248, 245, 0.64) 70%);
}

.gem-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(83, 58, 51, 0.05));
  pointer-events: none;
}

.gem-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 240ms ease, filter 240ms ease;
}

.color-card:hover .gem-frame img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.06);
}

.color-card h3 {
  margin-top: 0.95rem;
  font-size: 1.35rem;
}

.color-card a,
.collection-copy a {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.color-card a:hover,
.collection-copy a:hover {
  color: var(--ink);
}

.center-action {
  justify-content: center;
}

.collections-section {
  padding-top: 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.collection-card {
  overflow: hidden;
  border: 1px solid rgba(64, 43, 37, 0.1);
  background: #fffdf9;
}

.collection-image {
  position: relative;
  aspect-ratio: 0.86;
  overflow: hidden;
  background: #f8efe9;
}

.collection-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(67, 44, 40, 0.08));
  pointer-events: none;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.collection-card:hover .collection-image img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.06);
}

.collection-copy {
  padding: 1.5rem;
}

.collection-copy h3 {
  margin-top: 0;
  font-size: 1.8rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: #fffdf9;
}

.service-strip article {
  display: flex;
  gap: 1rem;
  min-height: 8rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.service-strip article:last-child {
  border-right: 0;
}

.service-strip svg {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.25rem;
  color: var(--rose);
}

.service-strip h3 {
  margin: 0;
  font-size: 1.35rem;
}

.service-strip p {
  margin-top: 0.4rem;
  font-size: 0.84rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(18rem, 0.86fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.page-hero-center {
  grid-template-columns: minmax(0, 52rem);
  justify-content: center;
  text-align: center;
}

.page-hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  font-weight: 500;
  line-height: 0.92;
}

.page-hero-center .page-hero-copy h1 {
  margin-inline: auto;
  max-width: 14ch;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.page-hero-center .page-hero-copy p:not(.eyebrow) {
  margin-inline: auto;
}

.page-hero-image {
  overflow: hidden;
  border: 1px solid rgba(64, 43, 37, 0.1);
  background: #fffdf9;
  box-shadow: 0 24px 70px rgba(83, 58, 51, 0.1);
}

.page-hero-image img {
  width: 100%;
  aspect-ratio: 0.96;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.compact-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-section {
  padding-top: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.product-card {
  border: 1px solid rgba(64, 43, 37, 0.1);
  background: #fffdf9;
}

.product-card:hover {
  border-color: rgba(169, 109, 117, 0.34);
  box-shadow: 0 20px 48px rgba(83, 58, 51, 0.1);
  transform: translateY(-4px);
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card div:last-child {
  padding: 1.15rem;
}

.product-card p,
.product-card span {
  margin: 0;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0.35rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.product-card span {
  color: var(--muted);
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(4rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-band h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.editorial-band > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.process-section {
  padding-top: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.home-process .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  min-height: 13rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: #fffdf9;
}

.process-grid span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.process-grid h3,
.utility-panel h2 {
  margin: 1rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.process-grid p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.form-section form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 1rem;
  align-items: end;
  max-width: 76rem;
  margin: 0 auto;
}

.form-section label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-section select {
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fffdf9;
  color: var(--ink);
  padding: 0 0.9rem;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.utility-panel {
  display: grid;
  justify-items: center;
  text-align: center;
}

.utility-panel svg {
  width: 2rem;
  height: 2rem;
  color: var(--rose);
}

.utility-panel .btn {
  margin-top: 1.5rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: #fffaf8;
}

.site-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-footer a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

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

  .hero-copy h1 {
    max-width: 13ch;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-card {
    border-bottom: 1px solid var(--line);
  }

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

  .collection-grid,
  .service-strip,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero,
  .editorial-band,
  .expertise-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .announcement-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    text-align: center;
  }

  .announcement-bar a {
    justify-self: center;
  }

  .site-header {
    padding: 1rem;
  }

  .brand span {
    font-size: 1.85rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .header-icons button {
    width: 2.15rem;
    height: 2.15rem;
  }

  .hero-section {
    padding: 3rem 1rem 3.8rem;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.45rem, 18vw, 4.6rem);
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-image-wrap {
    min-height: 27rem;
  }

  .trust-grid,
  .color-grid,
  .collection-grid,
  .service-strip,
  .product-grid,
  .process-grid,
  .expertise-grid,
  .home-process .process-grid,
  .form-section form {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .service-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-card:last-child,
  .service-strip article:last-child {
    border-bottom: 0;
  }

  .content-section {
    padding: 4.2rem 1rem;
  }

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

  .collection-image {
    aspect-ratio: 1.12;
  }

  .service-strip {
    margin: 0 1rem 1rem;
  }

  .page-hero {
    grid-template-columns: 1fr;
    padding: 3.4rem 1rem;
  }

  .page-hero-copy h1 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .editorial-band {
    margin: 0 1rem 4rem;
    padding: 2rem 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
