* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #24140f;
  --bg-soft: #2e1a13;
  --bg-deep: #1b0d08;

  --card: rgba(255, 245, 235, 0.09);
  --card-soft: rgba(255, 245, 235, 0.055);
  --card-solid: #321d15;

  --text: #fff4e8;
  --muted: #d7bfa8;
  --line: rgba(255, 244, 232, 0.16);

  --accent: #f0b35a;
  --accent-soft: #7b2e13;

  --button: #fff4e8;
  --button-text: #24140f;

  --beige-1: #ead9c8;
  --beige-2: #dcc4ad;
  --beige-3: #cbae90;
  --beige-text: #3a2418;
  --beige-muted: rgba(58, 36, 24, 0.76);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(circle at 8% 8%, rgba(240, 179, 90, 0.13), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(123, 46, 19, 0.30), transparent 32%),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg) 48%, #3a2118 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1120px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  color: var(--text);
}

.brand-mark {
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ecd9ba, #caa177);
  box-shadow: 0 8px 18px rgba(208, 161, 92, .18);
}

.brand-text {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  transform: translateY(-1px);
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: var(--card);
}

.header-btn {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--button);
  color: var(--button-text);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

/* HERO */

main {
  position: relative;
  z-index: 3;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 24px;
}

.rain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.22;
  z-index: 2;
}

.rain span {
  position: absolute;
  top: -12%;
  width: 7px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-soft));
  animation: rainMove linear infinite;
}

.rain span:nth-child(1) { left: 6%; animation-duration: 9s; animation-delay: -1s; }
.rain span:nth-child(2) { left: 14%; animation-duration: 13s; animation-delay: -4s; }
.rain span:nth-child(3) { left: 23%; animation-duration: 10s; animation-delay: -7s; }
.rain span:nth-child(4) { left: 31%; animation-duration: 15s; animation-delay: -2s; }
.rain span:nth-child(5) { left: 39%; animation-duration: 11s; animation-delay: -5s; }
.rain span:nth-child(6) { left: 48%; animation-duration: 14s; animation-delay: -8s; }
.rain span:nth-child(7) { left: 57%; animation-duration: 9s; animation-delay: -3s; }
.rain span:nth-child(8) { left: 65%; animation-duration: 16s; animation-delay: -6s; }
.rain span:nth-child(9) { left: 73%; animation-duration: 12s; animation-delay: -9s; }
.rain span:nth-child(10) { left: 82%; animation-duration: 10s; animation-delay: -4s; }
.rain span:nth-child(11) { left: 90%; animation-duration: 15s; animation-delay: -8s; }
.rain span:nth-child(12) { left: 96%; animation-duration: 18s; animation-delay: -11s; }

@keyframes rainMove {
  0% {
    transform: translate3d(0, -20vh, 0) rotate(12deg);
    opacity: 0;
  }

  12% {
    opacity: 0.8;
  }

  100% {
    transform: translate3d(-44px, 115vh, 0) rotate(42deg);
    opacity: 0;
  }
}

.hero-container {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 136px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.hero-left,
.hero-right {
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    var(--card);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(16px);
}

.hero-left {
  padding: clamp(30px, 6vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(240, 179, 90, 0.25);
  background: rgba(240, 179, 90, 0.10);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-feature-settings: "kern" 1;
}

h1 {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--text);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.hero-left p {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary,
.btn-secondary {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  transition: 0.22s ease;
}

.btn-primary {
  background: var(--button);
  color: var(--button-text);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--card-soft);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 245, 235, 0.12);
}

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 245, 235, 0.055);
}

.hero-stats strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* CLICKABLE PRODUCT CATALOGUE CARD */

.hero-right {
  padding: clamp(18px, 3vw, 34px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-card-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.catalog-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(90, 58, 40, 0.13);
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.28), transparent 28%),
    radial-gradient(circle at 20% 85%, rgba(160, 110, 70, .18), transparent 32%),
    linear-gradient(145deg, var(--beige-1) 0%, var(--beige-2) 56%, var(--beige-3) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.22),
    0 20px 40px rgba(0,0,0,.12);
  transition: 0.25s ease;
}

.catalog-card-link:hover .catalog-card {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.22),
    0 28px 58px rgba(0,0,0,.22);
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  border: 1px solid rgba(58, 36, 24, 0.11);
}

.catalog-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  filter: blur(2px);
}

.catalog-pill {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 42px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(58, 36, 24, 0.12);
  color: var(--beige-text);
  font-size: 13px;
  font-weight: 800;
}

.catalog-title {
  position: absolute;
  z-index: 2;
  left: 42px;
  bottom: 104px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--beige-text);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.catalog-footer {
  position: absolute;
  z-index: 2;
  left: 42px;
  right: 42px;
  bottom: 38px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--beige-muted);
  font-size: 13px;
  font-weight: 700;
}

/* SECTIONS */

.section {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.02)),
    var(--card);
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
  backdrop-filter: blur(16px);
}

.section-head {
  max-width: 740px;
  margin-bottom: 26px;
}

h2 {
  color: var(--text);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 245, 235, 0.045);
  transition: 0.22s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 245, 235, 0.07);
}

.info-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.info-card h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.info-card p,
.about p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.contact {
  margin-bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact h2 {
  max-width: 760px;
}

/* FOOTER */

.site-footer {
  position: relative;
  z-index: 3;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner a {
  color: var(--text);
  font-weight: 800;
}

/* RESPONSIVE */

@media (max-width: 940px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 460px;
  }

  .cards,
  .about {
    grid-template-columns: 1fr;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .header-inner {
    height: 68px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-container {
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: auto;
  }

  .brand-text {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .hero-container,
  .section,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .hero-left {
    padding: 30px 22px;
  }

  h1 {
    letter-spacing: -0.045em;
  }

  .catalog-pill,
  .catalog-title {
    left: 28px;
  }

  .catalog-footer {
    left: 28px;
    right: 28px;
  }

  .catalog-title {
    font-size: 44px;
  }

  .footer-inner {
    flex-direction: column;
  }
}