:root {
  --maroon: #6f1d2b;
  --maroon-deep: #3b0d16;
  --gold: #c9a24a;
  --gold-light: #e2c77d;
  --cream: #fff8ee;
  --soft: #f7eadc;
  --text: #352525;
  --muted: #6b5a5a;
  --white: #ffffff;
  --shadow: 0 20px 58px rgba(59, 13, 22, 0.10);
  --shadow-hover: 0 30px 72px rgba(59, 13, 22, 0.17);
  --radius-large: 28px;
  --radius-medium: 22px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-height: 100vh;
  font-family: "Raleway", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
}

::selection {
  background: var(--maroon);
  color: var(--white);
}

/* CUSTOM CURSOR */
.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition:
    width 0.25s ease,
    height 0.25s ease,
    background 0.25s ease;
}

.cursor-ring.cursor-active {
  width: 54px;
  height: 54px;
  background: rgba(201, 162, 74, 0.12);
}

/* NAVBAR */
.navbar {
  width: 100%;
  min-height: 82px;
  padding: 16px 7%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 248, 238, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(111, 29, 43, 0.10);
  transition:
    min-height 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.navbar.scrolled {
  min-height: 72px;
  background: rgba(255, 248, 238, 0.96);
  box-shadow: 0 10px 34px rgba(59, 13, 22, 0.08);
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  width: auto;
  height: 46px;
  display: block;
  object-fit: contain;
}

.nav-tagline {
  margin-right: auto;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--maroon);
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--maroon-deep);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  cursor: pointer;
  place-items: center;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--maroon-deep);
  border-radius: 999px;
  transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* COMMON SECTIONS */
section {
  padding: 100px 7%;
}

.section-header {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  line-height: 1;
  color: var(--maroon-deep);
}

.section-intro {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 74, 0.16),
    rgba(201, 162, 74, 0)
  );
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-bg-letter {
  position: absolute;
  top: -140px;
  left: -35px;
  z-index: -1;
  font-family: "Cinzel", serif;
  font-size: clamp(230px, 26vw, 380px);
  line-height: 1;
  color: rgba(111, 29, 43, 0.045);
  user-select: none;
}

.hero-eyebrow {
  margin-bottom: 25px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
}

.hero-logo {
  width: 290px;
  max-height: 150px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-bottom: 21px;
}

.hero-subtitle-line {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 37px);
  font-style: italic;
  color: var(--maroon);
}

.hero-desc {
  max-width: 540px;
  margin-bottom: 34px;
  line-height: 1.85;
  font-size: 17px;
  color: #5d4a4a;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-cta,
.product-btn,
.outline-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.7px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-cta,
.product-btn {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 13px 30px rgba(111, 29, 43, 0.18);
}

.hero-cta:hover,
.hero-cta:focus-visible,
.product-btn:hover,
.product-btn:focus-visible {
  background: var(--gold);
  color: var(--maroon-deep);
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(201, 162, 74, 0.27);
}

.hero-link {
  color: var(--maroon);
  text-decoration-color: rgba(111, 29, 43, 0.35);
  text-underline-offset: 6px;
  font-size: 14px;
  font-weight: 600;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: var(--gold);
}

.hero-right {
  position: relative;
  z-index: 2;
}

.hero-img-mosaic {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
}

.mosaic-main {
  width: 78%;
  height: 555px;
  display: block;
  object-fit: cover;
  border-radius: 250px 250px 28px 28px;
  box-shadow: 0 35px 90px rgba(59, 13, 22, 0.22);
}

.mosaic-small {
  position: absolute;
  width: clamp(155px, 15vw, 205px);
  height: clamp(215px, 20vw, 260px);
  object-fit: cover;
  border: 9px solid var(--cream);
  box-shadow: 0 20px 48px rgba(59, 13, 22, 0.20);
}

.mosaic-small.one {
  right: 0;
  top: 72px;
  border-radius: 130px 130px 18px 18px;
}

.mosaic-small.two {
  right: 56px;
  bottom: 0;
  border-radius: 18px 18px 130px 130px;
}

/* FEATURES */
.features {
  background: var(--white);
}

.features-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.feature-item {
  min-height: 260px;
  padding: 34px 26px;
  background: var(--cream);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(111, 29, 43, 0.09);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.feature-item:hover {
  transform: translateY(-9px);
  border-color: rgba(201, 162, 74, 0.45);
  box-shadow: 0 20px 48px rgba(59, 13, 22, 0.11);
}

.feature-icon {
  display: block;
  margin-bottom: 19px;
  font-size: 34px;
}

.feature-title {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  color: var(--maroon);
}

.feature-text {
  max-width: 270px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* QUOTE */
.quote-section {
  padding-top: 115px;
  padding-bottom: 115px;
  background:
    linear-gradient(rgba(59, 13, 22, 0.96), rgba(59, 13, 22, 0.96)),
    radial-gradient(circle at center, rgba(201, 162, 74, 0.22), transparent);
  color: var(--white);
  text-align: center;
}

.quote-inner {
  max-width: 950px;
  margin: 0 auto;
}

.quote-mark {
  display: block;
  height: 60px;
  font-family: "Cormorant Garamond", serif;
  font-size: 110px;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.85;
}

.quote-text {
  margin: 10px auto 27px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-style: italic;
  line-height: 1.33;
}

.quote-author {
  color: var(--gold-light);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

/* COLLECTIONS */
.collections {
  background: var(--soft);
}

.product-grid {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.product-card {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

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

.product-image-wrap {
  height: 450px;
  overflow: hidden;
  background: #eadfd4;
}

.product-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-info {
  flex: 1;
  padding: 27px;
  display: flex;
  flex-direction: column;
}

.product-title {
  margin-bottom: 13px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.1;
  color: var(--maroon);
}

.product-desc {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-desc strong,
.product-meta strong {
  color: var(--maroon-deep);
}

.product-meta {
  margin-bottom: 24px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-btn {
  width: fit-content;
  margin-top: auto;
  min-height: 44px;
  padding: 11px 21px;
  font-size: 12px;
}

/* LOOKBOOK */
.lookbook {
  background: var(--white);
}

.lookbook-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.look-item {
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--soft);
  box-shadow: 0 12px 34px rgba(59, 13, 22, 0.08);
}

.look-item:nth-child(3n + 2) {
  height: 470px;
}

.look-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.look-item:hover img {
  transform: scale(1.075);
}

/* REVIEWS */
.reviews-section {
  background: var(--cream);
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.review-card {
  padding: 38px;
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: 0 18px 52px rgba(59, 13, 22, 0.08);
  border: 1px solid rgba(111, 29, 43, 0.06);
}

.review-stars {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 21px;
  letter-spacing: 2px;
}

.review-text {
  margin-bottom: 27px;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-style: italic;
  line-height: 1.55;
  color: #4f3c3c;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
}

.review-name {
  margin-bottom: 3px;
  color: var(--maroon-deep);
  font-weight: 700;
}

.review-verified {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

/* CONTACT BANNER */
.contact-banner {
  background:
    linear-gradient(
      120deg,
      rgba(255, 248, 238, 0.98),
      rgba(247, 234, 220, 0.93)
    );
}

.contact-banner-content {
  max-width: 950px;
  margin: 0 auto;
  padding: 65px clamp(24px, 6vw, 80px);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(111, 29, 43, 0.08);
}

.contact-banner h2 {
  margin-bottom: 17px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--maroon-deep);
}

.contact-banner p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.outline-btn {
  border: 1px solid rgba(111, 29, 43, 0.35);
  color: var(--maroon);
  background: transparent;
}

.outline-btn:hover,
.outline-btn:focus-visible {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  padding: 65px 7% 25px;
  background: var(--maroon-deep);
  color: var(--white);
}

.footer-content {
  max-width: 1500px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  width: auto;
  max-width: 220px;
  height: 64px;
  display: block;
  object-fit: contain;
  object-position: left;
  filter: brightness(1.18);
}

.footer-tagline {
  margin-top: 14px;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
}

.footer-links a {
  color: #eadfdf;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease;
}

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

.footer-contact p {
  color: #eadfdf;
  font-size: 14px;
}

.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.social-btn:hover,
.social-btn:focus-visible {
  background: var(--gold);
  color: var(--maroon-deep);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #d5c4c4;
  font-size: 12px;
  line-height: 1.6;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay2 {
  transition-delay: 0.24s;
}

/* KEYBOARD ACCESSIBILITY */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(201, 162, 74, 0.65);
  outline-offset: 4px;
}

/* TABLET */
@media (max-width: 1100px) {
  .navbar {
    padding-left: 5%;
    padding-right: 5%;
  }

  .nav-tagline {
    display: none;
  }

  section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .mosaic-main {
    width: 82%;
  }

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

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

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

  footer {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* MOBILE NAV + STACKED CONTENT */
@media (max-width: 820px) {
  .navbar {
    min-height: 74px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .nav-logo img {
    height: 42px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1001;
    padding: 120px 8% 50px;
    background: rgba(255, 248, 238, 0.985);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 75px;
    grid-template-columns: 1fr;
  }

  .hero-left {
    max-width: 680px;
  }

  .hero-img-mosaic {
    min-height: 590px;
    max-width: 680px;
  }

  .mosaic-main {
    width: 78%;
  }

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

  .look-item,
  .look-item:nth-child(3n + 2) {
    height: 430px;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* SMALL MOBILE */
@media (max-width: 580px) {
  .cursor,
  .cursor-ring {
    display: none;
  }

  section {
    padding: 78px 5%;
  }

  .section-header {
    margin-bottom: 42px;
  }

  .section-title {
    font-size: 43px;
  }

  .section-intro {
    font-size: 15px;
  }

  .hero {
    padding-left: 5%;
    padding-right: 5%;
    gap: 44px;
  }

  .hero-bg-letter {
    top: -90px;
    left: -18px;
    font-size: 220px;
  }

  .hero-logo {
    width: 230px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-img-mosaic {
    min-height: auto;
  }

  .mosaic-main {
    width: 100%;
    height: 500px;
    border-radius: 180px 180px 24px 24px;
  }

  .mosaic-small {
    display: none;
  }

  .features-grid,
  .product-grid,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: 235px;
  }

  .product-image-wrap {
    height: 470px;
  }

  .look-item,
  .look-item:nth-child(3n + 2) {
    height: 500px;
  }

  .review-card {
    padding: 29px;
  }

  .review-text {
    font-size: 21px;
  }

  .quote-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .contact-banner-content {
    padding: 50px 22px;
    border-radius: 26px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .hero-cta,
  .contact-actions .outline-btn {
    width: 100%;
  }

  footer {
    padding: 55px 5% 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

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

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
