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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0d0b;
  color: #f4f0e8;
  line-height: 1.6;
}

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

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

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 32px;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.25)),
    url("images/hero.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.nav {
  position: absolute;
  top: 28px;
  left: 32px;
  right: 32px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-name {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-link {
  font-size: 0.9rem;
  border: 1px solid rgba(244, 240, 232, 0.45);
  padding: 10px 18px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-link:hover {
  background: #f4f0e8;
  color: #0d0d0b;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: 80px;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c9b99a;
  margin-bottom: 16px;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  margin-bottom: 24px;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 620px;
  font-size: 1.25rem;
  color: #e2d8c7;
  margin-bottom: 32px;
}

.hero-buttons,
.contact-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.button.primary {
  background: #f4f0e8;
  color: #0d0d0b;
}

.button.primary:hover {
  background: #c9b99a;
}

.button.secondary {
  border: 1px solid rgba(244, 240, 232, 0.45);
  color: #f4f0e8;
}

.button.secondary:hover {
  background: rgba(244, 240, 232, 0.12);
}

/* SECTIONS */

.section {
  padding: 110px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-header p,
.text-block p,
.contact-section p {
  color: #d5cbbb;
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.text-block {
  max-width: 660px;
}

.text-block p + p {
  margin-top: 20px;
}

/* VIDEO */

.video-section {
  max-width: 980px;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  border: 1px solid rgba(244, 240, 232, 0.18);
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)),
    url("images/video-poster.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-placeholder p {
  color: #f4f0e8;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  min-height: 230px;
  padding: 28px;
  border-radius: 24px;
  background: #171611;
  border: 1px solid rgba(244, 240, 232, 0.08);
}

.card p {
  color: #cfc4b2;
  font-size: 0.98rem;
}

/* QUOTE */

.quote-section {
  max-width: 1000px;
  text-align: center;
}

blockquote {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #f4f0e8;
}

/* GALLERY */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  background: #171611;
}

/* CONTACT */

.contact-section {
  text-align: center;
  max-width: 760px;
}

.contact-section p {
  margin-bottom: 28px;
}

.contact-links {
  justify-content: center;
}

/* FOOTER */

footer {
  padding: 32px;
  text-align: center;
  color: #8f8678;
  font-size: 0.85rem;
  border-top: 1px solid rgba(244, 240, 232, 0.08);
}

/* MOBILE */

@media (max-width: 900px) {
  .hero {
    padding: 24px;
    background-position: center;
  }

  .nav {
    top: 22px;
    left: 24px;
    right: 24px;
  }

  .hero-content {
    margin-top: 120px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 92vh;
    align-items: flex-end;
    padding: 24px;
    padding-bottom: 56px;
  }

  .nav-name {
    font-size: 0.78rem;
  }

  .nav-link {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .hero-content {
    margin-top: 0;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .section {
    padding: 78px 22px;
  }

  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  .hero-buttons,
  .contact-links {
    width: 100%;
  }
}

/* ---------- PROFILE CARD ---------- */

.profile-card {
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  z-index: 5;
}

.profile-image-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.profile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  transform: scale(3.5) translate(3%, 15%);
  
}

.profile-info {
  padding: 22px 28px 24px;
}

.profile-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: #f4f0e8;
  font-size: 0.95rem;
  line-height: 1.3;
}

.profile-item:last-child {
  margin-bottom: 0;
}

.profile-item i {
  width: 20px;
  min-width: 20px;
  font-size: 16px;
  color: #d8c7a0;
  text-align: center;
}

.profile-item p {
  margin: 0;
}

@media (max-width:1100px){

    .hero{

        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:24px;
        padding:32px;

    }

    .hero-content{

        width:60%;
        margin-top:80px;

    }

    .profile-card{

        position:relative;
        top:auto;
        right:auto;
        left:auto;
        transform:none;

        width:190px;
        flex-shrink:0;

    }

}

@media (max-width:700px){

    .hero{

        flex-direction:column;

    }

    .hero-content{

        width:100%;
        margin-top:32px;

    }

    .profile-card{

        width:220px;

    }

}