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

:root {
  --gold: #C4943D;
  --gold-light: #E8C97A;
  --gold-dark: #A07828;
  --dark: #1E1E1E;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --bg: #FDFCF9;
  --bg-alt: #F6F3EE;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1100px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-dark);
}

strong {
  font-weight: 600;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 148, 61, 0.35);
}

.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(196, 148, 61, 0.45);
  transform: translateY(-2px);
}

.btn--large {
  padding: 16px 40px;
  font-size: 18px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 252, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.header__logo:hover {
  color: var(--gold);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.header__link:hover::after {
  width: 100%;
}

.header__link--cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.header__link--cta::after {
  display: none;
}

.header__link--cta:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(196, 148, 61, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(232, 201, 122, 0.06) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg) 0%, #F8F4EC 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero__subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 36px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section__subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 56px;
  font-size: 17px;
}

/* Video Section */
.video-section .section__subtitle {
  margin-bottom: 40px;
}

.video-wrapper {
  display: block;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.video-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: relative;
  z-index: 3;
  width: 80px;
  height: 80px;
  background: rgba(196, 148, 61, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-thumbnail:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--gold);
}

.video-play-btn svg {
  margin-left: 3px;
}

/* About */
.about__content {
  max-width: 800px;
  margin: 0 auto;
}

.about__text p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.about__text p:last-child {
  margin-bottom: 0;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.card__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit {
  text-align: center;
}

.benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(196, 148, 61, 0.1);
  color: var(--gold);
  margin-bottom: 16px;
}

.benefit__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.benefit__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Contact */
.contact__card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact__text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__copy {
  font-size: 14px;
  color: var(--text-light);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(253, 252, 249, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header__toggle {
    display: flex;
  }

  .hero__title {
    font-size: clamp(30px, 8vw, 44px);
  }

  .hero__text {
    font-size: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .contact__card {
    padding: 32px 24px;
  }

  .video-play-btn {
    width: 64px;
    height: 64px;
  }

  .video-play-btn svg {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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