:root {
  --bg: #08090a;
  --surface: #0f1011;
  --surface-2: #191a1b;
  --surface-3: rgba(255,255,255,0.05);
  --text: #f7f8f8;
  --text-secondary: #d0d6e0;
  --text-muted: #8a8f98;
  --text-subtle: #62666d;
  --accent: #d4a373;
  --accent-hover: #e6b585;
  --border: rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.05);
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 760px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,9,10,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0f1011;
  border-color: transparent;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #0f1011;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 190px 0 140px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,163,115,0.12) 0%, rgba(212,163,115,0.04) 40%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 920px;
  margin: 0 auto 24px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

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

.hero-note {
  margin-top: 22px;
  color: var(--text-subtle);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* Sections */
.section {
  padding: 110px 0;
  position: relative;
}

.section-dark {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 18px;
}

.section-lead {
  color: var(--text-muted);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 56px;
}

/* Grid */
.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards */
.card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: transform 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212,163,115,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,163,115,0.08), rgba(255,255,255,0.02));
  border-color: rgba(212,163,115,0.18);
}

.card-cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.card-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.trust-list {
  list-style: none;
}

.trust-list li {
  padding: 18px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 1.05rem;
  line-height: 1.6;
}

.trust-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.trust-list strong {
  color: var(--text);
  font-weight: 500;
}

.hours-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.hours-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 8px;
  margin-bottom: 28px;
}

.hours-list dt {
  color: var(--text-muted);
}

.hours-list dd {
  color: var(--text);
  font-weight: 500;
  text-align: right;
}

.hours-card .phone {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hours-card .address {
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-list details {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-list summary {
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 26px 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 17px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-subtle);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,163,115,0.1);
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 20px;
}

.form-note {
  text-align: center;
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 0.92rem;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-subtle);
  font-size: 0.9rem;
}

/* Chat widget */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
}

.chat-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0f1011;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  white-space: nowrap;
}

.chat-toggle-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.chat-toggle-text {
  flex-shrink: 0;
}

.chat-toggle-icon {
  font-size: 1.1rem;
}

.chat-window {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 340px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-window.open {
  display: flex;
}

.chat-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-dot {
  width: 8px;
  height: 8px;
  background: #27a644;
  border-radius: 50%;
  box-shadow: 0 0 8px #27a644;
}

.chat-body {
  height: 280px;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  max-width: 86%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.chat-message.bot {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message.user {
  background: var(--accent);
  color: #0f1011;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-input {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--border);
}

.chat-input input {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
}

.chat-input input:focus {
  border-color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 150px 0 100px;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .chat-window {
    width: calc(100vw - 32px);
    right: -8px;
  }

  .hours-list {
    grid-template-columns: 1fr 1fr;
  }
}
