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

:root {
  --plum-deep: #1A1025;
  --plum-dark: #231633;
  --plum-mid: #2D1B42;
  --plum-light: #3D2556;
  --plum-soft: #4A2D66;
  --amber-gold: #D4AF5A;
  --amber-light: #E8CC7C;
  --amber-dark: #A07830;
  --amber-muted: #B8944A;
  --cream: #F5F0E8;
  --cream-soft: #EDE5D5;
  --white: #FFFFFF;
  --text-primary: #F5F0E8;
  --text-secondary: #C4B8D0;
  --text-muted: #8A7A9A;
  --gold-gradient: linear-gradient(135deg, #D4AF5A 0%, #E8CC7C 50%, #A07830 100%);
  --plum-gradient: linear-gradient(180deg, #1A1025 0%, #231633 100%);
  --section-padding: clamp(60px, 10vw, 120px);
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--plum-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold-gradient);
  color: var(--plum-deep);
  box-shadow: 0 4px 20px rgba(212, 175, 90, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 90, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--amber-gold);
  border: 1.5px solid var(--amber-gold);
}

.btn--outline:hover {
  background: rgba(212, 175, 90, 0.1);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--plum-deep);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(26, 16, 37, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav__logo-accent {
  color: var(--amber-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--amber-gold);
  background: rgba(212, 175, 90, 0.08);
}

.nav__link--cta {
  margin-left: 8px;
  background: var(--gold-gradient);
  color: var(--plum-deep);
  font-weight: 600;
  padding: 10px 22px;
}

.nav__link--cta:hover {
  box-shadow: 0 4px 20px rgba(212, 175, 90, 0.4);
  transform: translateY(-1px);
}

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

.nav__toggle-line {
  width: 24px;
  height: 2px;
  background: var(--amber-gold);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 16, 37, 0.7);
  z-index: 1;
}

.hero__overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 16, 37, 0.4) 0%,
    rgba(26, 16, 37, 0.2) 40%,
    rgba(26, 16, 37, 0.5) 70%,
    rgba(26, 16, 37, 1) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 clamp(20px, 4vw, 48px);
  margin-left: clamp(5%, 10vw, 15%);
  padding-top: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 175, 90, 0.12);
  border: 1px solid rgba(212, 175, 90, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--amber-gold);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero__title-accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-gold);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Services */
.services {
  background: var(--plum-dark);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(145deg, rgba(45, 37, 66, 0.5) 0%, rgba(26, 16, 37, 0.8) 100%);
  border: 1px solid rgba(212, 175, 90, 0.1);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 90, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 90, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.service-card__title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* About */
.about {
  background: var(--plum-deep);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}

.about__image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid rgba(212, 175, 90, 0.3);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about__stat {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  z-index: 2;
  text-align: center;
}

.about__stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--plum-deep);
  line-height: 1;
}

.about__stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--plum-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.about__content {
  padding: clamp(20px, 3vw, 40px) 0;
}

.about__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.about__feature svg {
  flex-shrink: 0;
}

/* Why Us */
.why-us {
  background: var(--plum-dark);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: linear-gradient(160deg, rgba(45, 37, 66, 0.6) 0%, rgba(26, 16, 37, 0.8) 100%);
  border: 1px solid rgba(212, 175, 90, 0.08);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  transition: all var(--transition);
  position: relative;
}

.why-card:hover {
  border-color: rgba(212, 175, 90, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.why-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(212, 175, 90, 0.25) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.why-card__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.why-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Gallery */
.gallery {
  padding: 0;
  overflow: hidden;
}

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

.gallery__item {
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 16, 37, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* CTA */
.cta {
  background: var(--plum-deep);
  padding: var(--section-padding) 0;
}

.cta__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta__bg-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 90, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.cta__text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Contact */
.contact {
  background: var(--plum-dark);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 90, 0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact__detail-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-gold);
  margin-bottom: 4px;
}

.contact__detail-value {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.contact__link {
  transition: color var(--transition);
}

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

.contact__form-wrap {
  background: linear-gradient(160deg, rgba(45, 37, 66, 0.5) 0%, rgba(26, 16, 37, 0.8) 100%);
  border: 1px solid rgba(212, 175, 90, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}

.contact__form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__form-group {
  margin-bottom: 20px;
}

.contact__form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact__form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(26, 16, 37, 0.8);
  border: 1px solid rgba(212, 175, 90, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}

.contact__form-input::placeholder {
  color: var(--text-muted);
}

.contact__form-input:focus {
  border-color: var(--amber-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 90, 0.1);
}

.contact__form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(212, 175, 90, 0.1);
  border: 1px solid rgba(212, 175, 90, 0.3);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--amber-gold);
}

.contact__form-success.visible {
  display: flex;
}

/* Map */
.map-section {
  position: relative;
  border-top: 1px solid rgba(212, 175, 90, 0.1);
}

.map-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.4;
}

/* Footer */
.footer {
  background: #0D0814;
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212, 175, 90, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer__logo-accent {
  color: var(--amber-gold);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-gold);
  margin-bottom: 20px;
}

.footer__links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--amber-gold);
}

.footer__bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer__disclaimer {
  max-width: 480px;
  text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(26, 16, 37, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(212, 175, 90, 0.1);
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__link {
    width: 100%;
    padding: 14px 16px;
  }

  .nav__link--cta {
    margin-left: 0;
    text-align: center;
  }

  .hero__content {
    margin-left: 0;
    padding-top: 100px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__trust {
    gap: 20px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

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

  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .footer__disclaimer {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .gallery__inner {
    grid-template-columns: 1fr;
  }

  .hero__trust {
    flex-direction: column;
    gap: 16px;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
