@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&display=swap");

:root {
  --lux-burgundy: #800020;
  --lux-burgundy-dark: #613d42;
  --lux-ink: #232323;
  --lux-cream: #f8f3e6;
  --lux-line: rgba(35, 35, 35, 0.1);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--lux-ink);
  background: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

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

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--lux-line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--lux-burgundy);
}

.brand-mark {
  width: 47px;
  height: 62px;
}

.brand-copy,
.footer-brand-copy,
.script-logo,
.tagline h2 {
  font-family: "Segoe Print", "Segoe Script", cursive;
  letter-spacing: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--lux-burgundy);
}

.collection-bar {
  background: var(--lux-cream);
  border-top: 1px solid var(--lux-line);
}

.collection-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
}

.collection-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  color: var(--lux-ink);
  font-family: "Century Gothic", Futura, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
  scrollbar-width: none;
  white-space: nowrap;
}

.collection-list::-webkit-scrollbar {
  display: none;
}

.hero {
  background: #fff;
}

.hero-frame {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: clamp(500px, 54vw, 700px);
  min-height: 500px;
}

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

.hero-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(340px, 36vw, 450px);
  height: clamp(340px, 36vw, 450px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 42px 38px;
  color: var(--lux-burgundy);
  text-align: center;
  background: #fff;
  border: 6px solid var(--lux-burgundy);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 50px rgba(35, 35, 35, 0.06);
}

.hero-mark {
  width: 64px;
  height: 84px;
  margin-bottom: 8px;
  object-fit: contain;
}

.script-logo {
  display: flex;
  flex-direction: column;
  margin: 0 0 14px;
  color: var(--lux-burgundy);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-badge p {
  margin: 0 0 6px;
  color: var(--lux-ink);
  font-family: "Segoe Print", "Segoe Script", cursive;
  font-size: clamp(11px, 1.25vw, 15px);
  line-height: 1.35;
}

.tagline {
  padding: 48px 0 56px;
  text-align: center;
  background: #fff;
}

.tagline h2 {
  margin: 0;
  color: var(--lux-burgundy);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
}

.tagline p {
  max-width: 580px;
  margin: 18px auto 8px;
  color: var(--lux-burgundy-dark);
  font-size: 17px;
}

.contact-link {
  color: var(--lux-burgundy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  color: var(--lux-ink);
  background: var(--lux-cream);
}

.footer-inner {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--lux-burgundy-dark);
}

.footer-mark {
  width: 48px;
  height: 64px;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  color: var(--lux-burgundy);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer-inner p {
  margin: 0;
  color: var(--lux-burgundy-dark);
  font-family: "Century Gothic", Futura, Arial, sans-serif;
  font-size: 13px;
  text-align: right;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
  }

  .collection-inner {
    width: 100%;
    padding-left: 24px;
  }

  .hero-grid {
    height: 560px;
  }

  .hero-badge {
    padding: 34px 28px 28px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 14px 0 16px;
  }

  .collection-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }

  .collection-list {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    font-size: 16px;
  }

  .hero-frame {
    margin-right: -16px;
    margin-left: -16px;
  }

  .hero-grid {
    height: 520px;
    min-height: 520px;
  }

  .hero-badge {
    width: 300px;
    height: 300px;
    border-width: 4px;
  }

  .hero-mark {
    width: 40px;
    height: 52px;
  }

  .script-logo {
    font-size: 26px;
  }

  .hero-badge p {
    font-size: 10px;
  }

  .tagline {
    padding: 38px 0 46px;
  }

  .tagline h2 {
    font-size: 28px;
  }

  .tagline p {
    font-size: 15px;
  }

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

  .footer-inner p {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 38px;
    height: 50px;
  }

  .brand-copy {
    font-size: 18px;
  }

  .hero-grid {
    height: 480px;
    min-height: 480px;
  }

  .hero-badge {
    width: 272px;
    height: 272px;
    padding: 26px 22px 22px;
  }

  .hero-mark {
    width: 34px;
    height: 44px;
  }

  .script-logo {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .hero-badge p {
    margin-bottom: 5px;
    font-size: 9.5px;
  }
}
