@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #FFFFFF;
  --bg-warm: #F5F5F5;
  --bg-dark: #0A0A0A;
  --text-dark: #000000;
  --text-body: #333333;
  --text-light: #777777;
  --accent: #D90429;
  --accent-light: #EF233C;
  --border: #E5E5E5;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border);
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 1rem 4%;
}

.site-nav__brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.site-nav__brand-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.site-nav__brand-tag {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: -2px;
}

.site-nav__links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav__links a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.site-nav__links a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--text-dark);
  font-size: 0.75rem !important;
  letter-spacing: 2px !important;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}

.nav-cta:hover {
  background: var(--text-dark) !important;
  color: var(--white) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 6% 4rem 8%;
}

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.btn-solid {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
}

.btn-solid:hover {
  background: var(--bg-dark);
  transform: translateY(-2px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s, gap 0.3s;
}

.btn-text:hover {
  color: var(--accent);
  gap: 1rem;
}

.btn-text .arrow {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.btn-text .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.hero__visual {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-inner {
  width: 75%;
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__visual-inner::before {
  content: '';
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255,255,255,0.4);
}

.hero__visual-label {
  position: absolute;
  bottom: 10%;
  right: 10%;
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}

.hero__visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease;
}

.hero__visual-inner:hover .hero__visual-image {
  transform: scale(1.05);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 4%;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-light);
}

/* ========================================
   MARQUEE / INDUSTRIES TICKER
   ======================================== */
.marquee-wrap {
  background: var(--accent);
  padding: 1.2rem 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee span {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 2.5rem;
}

.marquee span::after {
  content: '◆';
  margin-left: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.5rem;
  vertical-align: middle;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   ABOUT / INTRO
   ======================================== */
.intro {
  padding: 8rem 8%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.intro__left {
  position: sticky;
  top: 8rem;
}

.intro__label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.intro__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.3;
}

.intro__body p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--text-body);
  line-height: 1.9;
}

.intro__body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  margin: 0.1em 0.15em 0 0;
  color: var(--accent);
}

.intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat__number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-dark);
  display: block;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* ========================================
   COLLECTIONS / PRODUCTS
   ======================================== */
.collections {
  padding: 6rem 0;
  background: var(--white);
}

.collections__header {
  text-align: center;
  padding: 0 8% 4rem;
}

.collections__label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.collections__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
}

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

.collection-card {
  padding: 3.5rem 3rem;
  border: 1px solid var(--border);
  margin: -0.5px;
  transition: background 0.4s, transform 0.01s;
  position: relative;
  cursor: pointer;
}

.collection-card::after {
  content: '';
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  width: 30px;
  height: 30px;
  border-right: 1px solid var(--text-light);
  border-bottom: 1px solid var(--text-light);
  transform: rotate(-45deg);
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0.4;
}

.collection-card:hover {
  background: var(--bg-dark);
}

.collection-card:hover .collection-card__num,
.collection-card:hover .collection-card__title,
.collection-card:hover .collection-card__desc,
.collection-card:hover .collection-card__list li {
  color: var(--white);
}

.collection-card:hover .collection-card__list li::before {
  color: var(--accent-light);
}

.collection-card:hover::after {
  border-color: var(--accent-light);
  opacity: 1;
}

.collection-card__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 2rem;
  transition: color 0.4s;
}

.collection-card__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  transition: color 0.4s;
}

.collection-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}

.collection-card__list {
  list-style: none;
}

.collection-card__list li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
  transition: color 0.4s;
}

.collection-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  transition: color 0.4s;
}

/* ========================================
   HORIZONTAL FEATURE STRIP
   ======================================== */
.advantages {
  padding: 8rem 8%;
  background: var(--bg-warm);
}

.advantages__header {
  text-align: center;
  margin-bottom: 5rem;
}

.advantages__label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.advantages__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.adv-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-left: 1px solid var(--border);
  position: relative;
}

.adv-item:first-child {
  border-left: none;
}

.adv-item__icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.adv-item__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.adv-item__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   CONTACT / FOOTER
   ======================================== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 6rem 8% 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.footer__brand-tag {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
}

.footer__brand-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 350px;
}

.footer__col-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.8rem;
}

.footer__links a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--accent-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer__contact-item i {
  color: var(--accent-light);
  margin-top: 0.3rem;
  font-size: 0.85rem;
  width: 16px;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social a {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  transition: color 0.3s;
  text-decoration: none;
}

.footer__social a:hover {
  color: var(--accent-light);
}

/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__content { padding: 10rem 6% 6rem; }
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .advantages__grid { grid-template-columns: repeat(3, 1fr); }
  .adv-item:nth-child(4) { border-left: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .intro { grid-template-columns: 1fr; gap: 3rem; }
  .intro__heading, .intro__left { position: static; }
}

@media (max-width: 768px) {
  .site-nav__links { display: none; }
  .menu-toggle { display: block; }
  .site-nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    padding: 2rem 4%;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .collections__grid { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: 1fr 1fr; }
  .adv-item { border-left: none; border-bottom: 1px solid var(--border); }
  .intro__stats { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .advantages__grid { grid-template-columns: 1fr; }
  .intro__stats { grid-template-columns: 1fr; }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 8rem 8%;
  background: var(--white);
}

.faq__header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq__label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.8rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  font-family: var(--sans);
}

.faq-item__question:hover {
  color: var(--accent);
}

.faq-item__question i {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: transform 0.4s ease, color 0.3s ease;
}

.faq-item.active .faq-item__question i {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer p {
  padding-bottom: 1.8rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
  padding: 8rem 8%;
  background: var(--bg-warm);
}

.gallery__header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery__label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.gallery__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--border);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* Mobile Grid for Gallery */
@media (max-width: 768px) {
  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .gallery__item {
    aspect-ratio: 1;
    border-radius: 4px; /* Slightly smaller border radius for smaller mobile images */
  }
}
