:root {
  --bg: #070707;
  --bg-soft: #0d0d0e;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f6f0e6;
  --text-soft: rgba(246, 240, 230, 0.78);
  --gold: #d6aa43;
  --gold-light: #f1d98f;
  --gold-soft: rgba(214, 170, 67, 0.18);
  --line: rgba(214, 170, 67, 0.18);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214, 170, 67, 0.10), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(214, 170, 67, 0.08), transparent 18%),
    linear-gradient(180deg, #050505 0%, #090909 45%, #080808 100%);
  color: var(--text);
  line-height: 1.7;
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #fff3d1;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(7, 7, 7, 0.78);
  border-bottom: 1px solid rgba(214, 170, 67, 0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
}

.brand-logo-horizontal {
  max-width: 410px;
  width: 70%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-soft);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(214, 170, 67, 0.34);
  background: rgba(214, 170, 67, 0.08);
  color: var(--gold-light) !important;
  font-weight: 700;
}

.header-phone:hover {
  background: rgba(214, 170, 67, 0.16);
  color: #fff3d1 !important;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(214, 170, 67, 0.07), transparent 20%),
    radial-gradient(circle at 18% 18%, rgba(214, 170, 67, 0.08), transparent 26%),
    linear-gradient(180deg, #050505 0%, #080808 46%, #090909 100%);
}

.hero-bg-blur,
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-blur {
  z-index: 0;
}

.hero-bg-blur img {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.18;
  filter: blur(28px) saturate(0.95) brightness(0.52);
  transform: scale(1.12);
}

.hero-media {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-media img {
  width: min(72vw, 1420px);
  max-width: none;
  height: auto;
  opacity: 0.44;
  filter: saturate(0.92) brightness(0.75) contrast(1.04);
  transform: translateX(4%);
  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 68%,
    rgba(0, 0, 0, 0.82) 78%,
    rgba(0, 0, 0, 0.28) 92%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 68%,
    rgba(0, 0, 0, 0.82) 78%,
    rgba(0, 0, 0, 0.28) 92%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(5, 5, 5, 0.93) 0%,
      rgba(5, 5, 5, 0.82) 18%,
      rgba(5, 5, 5, 0.58) 38%,
      rgba(5, 5, 5, 0.24) 58%,
      rgba(5, 5, 5, 0.58) 100%
    ),
    linear-gradient(180deg,
      rgba(5, 5, 5, 0.56) 0%,
      rgba(5, 5, 5, 0.14) 34%,
      rgba(5, 5, 5, 0.72) 100%
    );
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  z-index: 3;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0) 0%, #090909 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 120px 0 120px;
}

.hero-copy {
  max-width: 700px;
  padding-left: clamp(40px, 7vw, 120px);
}

.eyebrow,
.section-mini-title {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero h1,
.section-heading h2,
.intro-box h2,
.highlight-copy h2,
.contact-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7.6rem);
  margin-bottom: 24px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero-text {
  max-width: 590px;
  font-size: 1.08rem;
  color: rgba(246, 240, 230, 0.86);
  margin-bottom: 0;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

/* PANELS */
.intro-box,
.service-card,
.contact-card,
.intro-feature-card,
.highlight-copy,
.highlight-image,
.map-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(214, 170, 67, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* INTRO */
.intro-section,
.services-section,
.highlight-section,
.contact-section {
  padding: 110px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.intro-box {
  padding: 44px;
}

.intro-box h2 {
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  margin-bottom: 22px;
}

.intro-box p {
  color: var(--text-soft);
}

.intro-box p + p {
  margin-top: 18px;
}

.intro-visual {
  display: grid;
  gap: 20px;
}

.intro-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(214, 170, 67, 0.16);
  box-shadow: var(--shadow);
  min-height: 520px;
}

.intro-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.86) saturate(0.96);
}

.intro-feature-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
}

.intro-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(185,134,35,0.25), rgba(240,209,130,0.15));
  border: 1px solid rgba(214, 170, 67, 0.24);
  color: var(--gold-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.intro-feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.intro-feature-card p {
  color: var(--text-soft);
}

/* HEADINGS */
.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.4rem);
  margin-bottom: 18px;
}

.section-heading p {
  color: var(--text-soft);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  min-height: 245px;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -24px;
  bottom: -24px;
  background: radial-gradient(circle, rgba(214,170,67,0.14), transparent 70%);
  pointer-events: none;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(185,134,35,0.18), rgba(240,209,130,0.10));
  border: 1px solid rgba(214, 170, 67, 0.24);
  color: var(--gold-light);
  font-size: 1.18rem;
}

.service-icon-double {
  gap: 6px;
  font-size: 1rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-soft);
}

/* HIGHLIGHT */
.highlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.highlight-image {
  overflow: hidden;
  min-height: auto;
  height: 100%;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.84) saturate(0.96);
}

.highlight-copy {
  padding: 46px;
}

.highlight-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  margin-bottom: 20px;
}

.highlight-copy p {
  color: var(--text-soft);
}

.highlight-copy p + p {
  margin-top: 16px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.map-card {
  height: 100%;
}

.contact-card {
  padding: 38px;
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 18px;
}

.contact-card p {
  color: var(--text-soft);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(185,134,35,0.18), rgba(240,209,130,0.10));
  border: 1px solid rgba(214, 170, 67, 0.24);
  color: var(--gold-light);
  font-size: 1rem;
}

.contact-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-list p {
  margin: 0;
}

.contact-social-block {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(214, 170, 67, 0.14);
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(214, 170, 67, 0.28);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 600;
}

.social-btn i {
  font-size: 1rem;
}

.social-btn:hover {
  background: rgba(214, 170, 67, 0.12);
  color: #fff;
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  border: 0;
  filter: grayscale(0.16) contrast(0.96) brightness(0.92);
}

/* FOOTER */
.site-footer {
  padding: 30px 0 36px;
  border-top: 1px solid rgba(214, 170, 67, 0.10);
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  color: rgba(246, 240, 230, 0.58);
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .header-inner {
    min-height: 96px;
  }

  .brand-logo-horizontal {
    max-width: 330px;
  }

  .main-nav {
    gap: 18px;
  }

  .intro-grid,
  .highlight-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .intro-image-wrap,
  .highlight-image {
    min-height: 460px;
  }

  .map-card iframe {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
    gap: 14px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: calc(100vh - 150px);
  }

  .hero-copy {
    padding-left: 20px;
    max-width: 620px;
  }

  .hero-media img {
    width: min(92vw, 1200px);
    opacity: 0.32;
    transform: translateX(12%);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg,
        rgba(5, 5, 5, 0.94) 0%,
        rgba(5, 5, 5, 0.84) 26%,
        rgba(5, 5, 5, 0.64) 48%,
        rgba(5, 5, 5, 0.56) 100%
      ),
      linear-gradient(180deg,
        rgba(5, 5, 5, 0.58) 0%,
        rgba(5, 5, 5, 0.18) 36%,
        rgba(5, 5, 5, 0.72) 100%
      );
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 88px;
  }

  .brand-logo-horizontal {
    max-width: 270px;
  }

  .main-nav a:not(.header-phone) {
    display: none;
  }

  .header-phone {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    padding: 100px 0 80px;
  }

  .hero-copy {
    padding-left: 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

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

  .intro-section,
  .services-section,
  .highlight-section,
  .contact-section {
    padding: 82px 0;
  }

  .intro-box,
  .highlight-copy,
  .contact-card,
  .service-card {
    padding: 28px;
  }

  .intro-feature-card {
    padding: 22px;
  }

  .intro-image-wrap,
  .highlight-image {
    min-height: 340px;
  }

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

  .contact-list li {
    grid-template-columns: 44px 1fr;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .social-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .social-btn {
    width: 100%;
  }

  .map-card iframe {
    min-height: 360px;
  }
}