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

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

:root {
  --primary-dark: #1a1a1a;
  --white: #ffffff;
  --accent: #C4956A;
  --overlay: rgba(0, 0, 0, 0.35);
  --font-serif: 'Playfair Display', serif;
  --font-italic: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: calc(100% - 100px);
  height: 100vh;
  display: flex;
  overflow: hidden;
  background-color: #ffffff;
  align-items: stretch;
  margin-left: 100px;
}

.geometric-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Sidebar */
.hero-sidebar {
  width: 100px;
  height: 100vh;
  background-color: #ffffff;
  border-right: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-start;
  gap: 0;
}

.sidebar-logo-container {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.sidebar-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sidebar-social-links {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.sidebar-social-links * {
  transform: rotate(180deg);
}

.sidebar-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-italic);
  letter-spacing: 0.5px;
  opacity: 0.75;
  line-height: 1.2;
}

.sidebar-link:hover {
  color: var(--accent);
  opacity: 1;
}

.social-divider {
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 300;
  opacity: 0.4;
  font-family: var(--font-sans);
  line-height: 1;
}

.hero-left {
  flex: 1;
  padding: 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}

.hero-right {
  width: 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Logo */
.logo-container {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Tagline */
.tagline {
  font-family: var(--font-italic);
  font-size: 18px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Headline */
.headline {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 30px;
  letter-spacing: -1.5px;
}

/* Description */
.description {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 300;
}

/* Hero Right Panel */
.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay);
  z-index: 2;
}

/* Countdown Display */
.countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.countdown-number {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ===== Products Section ===== */
.products {
  width: calc(100% - 100px);
  padding: 100px 60px;
  background-color: #ffffff;
  scroll-margin-top: 100px;
  margin-left: 100px;
}

.products-header {
  text-align: center;
  margin-bottom: 80px;
}

.products-header h2 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.products-header p {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #888888;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #f9f9f9;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.product-description {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #888888;
  line-height: 1.6;
  font-weight: 300;
}

/* ===== Contact & Footer ===== */
.contact-footer {
  width: calc(100% - 100px);
  padding: 80px 60px;
  background-color: #fafafa;
  border-top: 1px solid #e8e8e8;
  margin-left: 100px;
}

.contact-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.contact-footer h3 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-link i {
  font-size: 20px;
}

.contact-link:hover {
  background-color: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: scale(1.1);
}

.copyright {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #999999;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    margin-left: 0;
  }

  .hero-sidebar {
    position: relative;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 30px;
    left: auto;
    top: auto;
  }

  .sidebar-content {
    flex-direction: row;
    justify-content: flex-start;
    gap: 40px;
    height: auto;
  }

  .sidebar-social-links {
    flex-direction: row;
    gap: 8px;
    padding-top: 0;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    transform: none;
  }

  .hero-left {
    width: 100%;
    height: 50vh;
    padding: 50px 40px;
    justify-content: center;
  }

  .hero-right {
    width: 100%;
    height: 50vh;
  }

  .products {
    margin-left: 0;
  }

  .contact-footer {
    margin-left: 0;
  }

  .headline {
    font-size: 48px;
  }

  .countdown-number {
    font-size: 80px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }

  .products-header h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero-sidebar {
    padding: 15px 20px;
  }

  .hero-sidebar {
    padding: 15px 0;
  }

  .sidebar-logo-container {
    width: 45px;
    height: 45px;
    margin-bottom: 30px;
  }

  .sidebar-link {
    font-size: 10px;
  }

  .social-divider {
    font-size: 10px;
  }

  .hero-left {
    padding: 40px 30px;
  }

  .headline {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .tagline {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .description {
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .countdown-number {
    font-size: 60px;
  }

  .countdown-label {
    font-size: 14px;
  }

  .products {
    padding: 60px 30px;
  }

  .products-header h2 {
    font-size: 32px;
  }

  .products-header p {
    font-size: 16px;
  }

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

  .product-name {
    font-size: 20px;
  }

  .contact-footer {
    padding: 60px 30px;
  }

  .contact-footer h3 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .contact-links {
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-link {
    width: 44px;
    height: 44px;
  }

  .contact-link svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .hero-left {
    padding: 30px 20px;
    height: auto;
  }

  .hero-right {
    height: 40vh;
  }

  .logo-container {
    width: 50px;
    height: 50px;
  }

  .headline {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .tagline {
    font-size: 14px;
  }

  .description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .countdown-number {
    font-size: 48px;
  }

  .countdown-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .geometric-overlay {
    opacity: 0.3;
  }

  .products {
    padding: 40px 20px;
  }

  .products-header {
    margin-bottom: 40px;
  }

  .products-header h2 {
    font-size: 24px;
  }

  .products-header p {
    font-size: 14px;
  }

  .product-card {
    text-align: center;
  }

  .product-image-wrapper {
    margin-bottom: 20px;
  }

  .product-name {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .product-description {
    font-size: 13px;
  }

  .contact-footer {
    padding: 40px 20px;
  }

  .contact-footer h3 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact-links {
    gap: 15px;
    margin-bottom: 30px;
  }

  .contact-link {
    width: 40px;
    height: 40px;
  }

  .contact-link svg {
    width: 18px;
    height: 18px;
  }

  .copyright {
    font-size: 12px;
  }
}
