* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --bg-1: #050505; --bg-2: #0b0b0b; --bg-3: #111111; --text: #ffffff;
  --muted: #c9c9c9; --muted-2: #9f9f9f; --line: rgba(255,255,255,0.08);
  --line-soft: rgba(255,255,255,0.05); --card: rgba(255,255,255,0.035);
  --card-2: rgba(255,255,255,0.02); --accent: #d6b36a;
  --accent-soft: rgba(214,179,106,0.18); --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --radius: 24px;
}
body {
  margin: 0; font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, rgba(214,179,106,0.08), transparent 28%), linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 45%, #080808 100%);
  color: var(--text); line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.topbar {
  position: fixed; top: 0; width: 100%; z-index: 1000; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 42px; background: rgba(8,8,8,0.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-soft);
}
.logo { font-size: 22px; font-weight: 800; letter-spacing: 4px; color: #f3f3f3; }
.topbar nav { display: flex; gap: 28px; align-items: center; }
.topbar nav a { font-size: 14px; color: rgba(255,255,255,0.88); transition: color 0.25s ease; }
.topbar nav a:hover { color: var(--accent); }
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 140px 20px 90px; overflow: hidden;
}
.hero-v4 { background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.82)), url("../images/hero.jpg") center center / cover no-repeat; }
.overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 16%, rgba(214,179,106,0.12), transparent 28%), linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.62));
}
.hero::before {
  content: ""; position: absolute; width: 760px; height: 760px; top: -240px; left: 50%; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(214,179,106,0.1), transparent 65%); filter: blur(28px); pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 980px; text-align: center; }
.tag, .mini-tag { display: inline-block; color: var(--accent); text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 700; }
.tag { margin-bottom: 18px; }
.hero h1 { margin: 0 0 18px; font-size: 82px; line-height: 0.95; letter-spacing: -2px; }
.gradient-text {
  background: linear-gradient(135deg, #fff4d6, var(--accent)); background-clip: text; -webkit-background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.subtitle { max-width: 760px; margin: 0 auto; color: #dddddd; font-size: 20px; }
.hero-buttons, .contact-actions, .business-box-actions, .form-actions { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-buttons, .business-box-actions, .contact-actions { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, #cda75a, #e5c98b); color: #111111; box-shadow: 0 12px 30px rgba(214,179,106,0.18); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(214,179,106,0.24); }
.btn-secondary { background: rgba(255,255,255,0.03); color: #ffffff; border-color: rgba(255,255,255,0.14); }
.btn-secondary:hover { transform: translateY(-2px); background: rgba(255,255,255,0.06); border-color: rgba(214,179,106,0.35); }
.section { padding: 110px 20px; }
.section-dark { background: linear-gradient(180deg, #0b0b0b 0%, #111111 100%); }
.container { max-width: 1240px; margin: 0 auto; }
.section-title { margin-bottom: 52px; }
.section-title.center { text-align: center; }
.section-title span {
  display: inline-block; color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: 3px; margin-bottom: 12px; text-transform: uppercase;
}
.section-title h2 {
  margin: 0; font-size: 56px; line-height: 1.02; letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff, #d3d3d3); background-clip: text; -webkit-background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.section-lead { max-width: 760px; margin: 18px auto 0; color: var(--muted); font-size: 17px; }
.about-grid, .social-grid, .services-grid, .gallery-grid { display: grid; gap: 28px; }
.about-grid, .social-grid, .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .social-card, .service-card, .business-box, .contact-panel, .contact-info-card, .gallery-item, .form-panel {
  position: relative; background: linear-gradient(180deg, var(--card), var(--card-2)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, opacity 0.5s ease;
}
.card, .social-card, .service-card { padding: 36px; min-height: 260px; display: flex; flex-direction: column; justify-content: center; }
.form-panel { padding: 38px; }
.card::before, .social-card::before, .service-card::before, .business-box::before, .contact-panel::before, .contact-info-card::before, .form-panel::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(214,179,106,0.08), transparent 35%, transparent 65%, rgba(255,255,255,0.02)); pointer-events: none;
}
.card h3, .social-card h3, .service-card h3, .contact-info-card h3 { position: relative; z-index: 1; margin: 0 0 14px; font-size: 22px; line-height: 1.2; color: #ffffff; }
.card p, .social-card p, .service-card p, .contact-text, .business-box p, .contact-info-list, .social-link-text { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 16px; }
.card:hover, .social-card:hover, .service-card:hover, .business-box:hover, .contact-panel:hover, .contact-info-card:hover, .gallery-item:hover, .form-panel:hover {
  transform: translateY(-7px); border-color: rgba(214,179,106,0.26); box-shadow: var(--shadow), 0 0 0 1px rgba(214,179,106,0.06) inset;
}
.social-card { text-align: center; align-items: center; }
.social-logo-wrap {
  width: 74px; height: 74px; border-radius: 20px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  margin-bottom: 18px; position: relative; z-index: 1; transition: border-color 0.25s ease, transform 0.25s ease;
}
.social-logo { max-width: 36px; max-height: 36px; width: auto; height: auto; object-fit: contain; transition: transform 0.25s ease, opacity 0.25s ease; }
.social-card:hover .social-logo-wrap { border-color: rgba(214,179,106,0.34); transform: translateY(-2px); }
.social-card:hover .social-logo { transform: scale(1.08); }
.social-link-text { margin-top: 18px; color: #ecd3a2; font-weight: 700; }
.service-number { position: relative; z-index: 1; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: #ead09c; margin-bottom: 12px; }
.business-box { padding: 42px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.business-box h2 { position: relative; z-index: 1; margin: 10px 0 14px; font-size: 42px; line-height: 1.05; }
.business-box-text { max-width: 700px; position: relative; z-index: 1; }
.contact-panel { padding: 38px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; }
.contact-panel-left, .contact-panel-right { position: relative; z-index: 1; }
.contact-info-card { padding: 28px; height: 100%; }
.contact-info-list { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-info-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.contact-info-list li:last-child { border-bottom: none; }
.gallery-item { min-height: 300px; }
.gallery-item img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.lux-form { position: relative; z-index: 1; }
.form-grid { display: grid; gap: 18px; }
.form-grid.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 14px; font-weight: 700; color: #f0e4c8; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.035); color: #ffffff; border-radius: 16px; padding: 14px 16px; font-size: 15px; outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: rgba(214,179,106,0.45); background: rgba(255,255,255,0.05); box-shadow: 0 0 0 4px rgba(214,179,106,0.08);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-status { margin: 0; font-size: 14px; color: #e7d4aa; }
.form-status.success { color: #d8c17c; }
.form-status.error { color: #ffb7b7; }
.footer { padding: 34px 20px; text-align: center; color: #8f8f8f; border-top: 1px solid var(--line-soft); background: #080808; }
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
@media (max-width: 1100px) {
  .about-grid, .social-grid, .services-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-panel { grid-template-columns: 1fr; }
  .business-box { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 60px; }
  .section-title h2 { font-size: 42px; }
}
@media (max-width: 720px) {
  .topbar { padding: 16px 18px; flex-direction: column; gap: 14px; }
  .topbar nav { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .hero { min-height: auto; padding-top: 170px; }
  .hero h1 { font-size: 42px; line-height: 1.02; }
  .subtitle { font-size: 17px; }
  .section { padding: 80px 18px; }
  .section-title { margin-bottom: 34px; }
  .section-title h2, .business-box h2 { font-size: 34px; }
  .card, .social-card, .service-card, .business-box, .contact-panel, .contact-info-card, .form-panel { border-radius: 22px; padding: 26px; }
  .about-grid, .social-grid, .services-grid, .gallery-grid, .form-grid.two-cols { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item img { min-height: 240px; }
  .hero-buttons, .contact-actions, .business-box-actions, .form-actions { justify-content: center; }
}
