:root {
  --gold: #c9a227;
  --gold-soft: #d7b64a;
  --cream: #f6f0e6;
  --dark: #080704;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: white;
}

.hero {
  position: relative;
  height: 72vh;
  min-height: 620px;
  max-height: 780px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(4,4,3,.82) 0%,
      rgba(4,4,3,.68) 24%,
      rgba(4,4,3,.38) 46%,
      rgba(4,4,3,.10) 70%,
      rgba(4,4,3,.16) 100%),
    linear-gradient(180deg,
      rgba(4,4,3,.30) 0%,
      rgba(4,4,3,.06) 50%,
      rgba(4,4,3,.28) 100%);
  z-index: 1;
}

.nav {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 34px clamp(32px, 5vw, 86px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: clamp(150px, 13vw, 215px);
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.menu a {
  color: rgba(255,255,255,.94);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: clamp(10px, .76vw, 12px);
  font-weight: 700;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(90%, 470px);
  margin-left: clamp(32px, 5vw, 86px);
  padding-top: clamp(54px, 7vh, 86px);
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.2vw, 70px);
  line-height: .94;
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 span {
  display: block;
  margin-top: 6px;
  color: var(--gold-soft);
  font-style: italic;
}

p {
  margin-top: 26px;
  max-width: 410px;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.68;
  color: rgba(255,255,255,.88);
  font-weight: 300;
}

.btn-primary {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 14px 24px;
  border: 1px solid rgba(201,162,39,.82);
  background: rgba(7,7,5,.12);
  color: var(--gold-soft);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 700;
  transition: all .22s ease;
}

.btn-primary:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.intro-preview {
  background: var(--cream);
  color: #18130d;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.intro-preview p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.05;
  max-width: 860px;
  margin: 0;
  color: #18130d;
}

@media (max-width: 1100px) {
  .menu {
    display: none;
  }

  .hero-bg {
    background-position: 58% center;
  }
}

@media (max-width: 700px) {
  .hero {
    height: 88svh;
    min-height: 660px;
    max-height: none;
  }

  .nav {
    padding: 28px 24px;
  }

  .brand img {
    width: 155px;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(4,4,3,.70) 0%,
      rgba(4,4,3,.45) 42%,
      rgba(4,4,3,.72) 100%);
  }

  .hero-content {
    width: calc(100% - 48px);
    margin-left: 24px;
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}


.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(201,162,39,.22), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.035), transparent 34%),
    linear-gradient(180deg, #090806 0%, #11100d 55%, #080704 100%);
  color: rgba(246,240,230,.94);
  padding: clamp(78px, 9vw, 132px) 24px clamp(82px, 10vw, 140px);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,.026) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: .22;
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -80px;
  width: min(820px, 70vw);
  height: 210px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(215,182,74,.42), transparent 65%);
  filter: blur(22px);
  opacity: .7;
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.section-mark {
  color: var(--gold-soft);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 28px;
  opacity: .9;
}

.about-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -0.045em;
  color: #f7efe3;
}

.about-section h2 span {
  color: var(--gold-soft);
}

.gold-divider,
.mini-divider {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.82), transparent);
}

.gold-divider {
  width: min(260px, 44vw);
  height: 1px;
  margin-top: 34px;
  margin-bottom: 42px;
}

.mini-divider {
  width: 92px;
  height: 1px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.about-lines {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 850px;
}

.about-lines p,
.about-main {
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.65;
  font-weight: 300;
  color: rgba(246,240,230,.90);
}

.about-main {
  max-width: 860px;
  margin: 0 auto;
}

.about-main strong {
  color: var(--gold-soft);
  font-weight: 700;
}

.final-divider {
  margin: 46px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 840px;
}

.final-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.75));
}

.final-divider span:last-child {
  background: linear-gradient(90deg, rgba(201,162,39,.75), transparent);
}

.final-divider i {
  color: var(--gold-soft);
  font-style: normal;
  font-size: 28px;
  line-height: 1;
}

.about-closing {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--gold-soft);
  max-width: 1000px;
  margin: 0 auto;
}

.about-closing em {
  font-style: italic;
  color: #f7efe3;
}

@media (max-width: 700px) {
  .about-section {
    padding: 74px 22px 86px;
  }

  .about-lines {
    gap: 14px;
  }

  .about-lines p,
  .about-main {
    font-size: 17px;
    line-height: 1.65;
  }

  .final-divider {
    gap: 14px;
  }
}
