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

:root {
  --bg-main: #050608;
  --bg-elevated: #10131a;
  --bg-elevated-soft: #181c24;
  --accent: #f1b545;
  --accent-soft: rgba(241, 181, 69, 0.16);
  --text-main: #f5f5f5;
  --text-muted: #a8afc4;
  --border-subtle: #272c39;
  --radius-xl: 18px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.75);
  --container-width: 1180px;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1a1f2b 0, #050608 48%, #020307 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: calc(100vh - 260px);
}

/* Layout */

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
  background: radial-gradient(circle at top left, rgba(241, 181, 69, 0.06), transparent 55%),
              rgba(5, 6, 8, 0.96);
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav-inner,
.page-inner,
.footer-inner {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-inline: 20px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  gap: 16px;
}

/* Logo + tagline */

.brand-stack {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #fff7dd 0, #f1b545 40%, #c98621 72%, #8a5a15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
}

.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 650;
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav */

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-block: 4px;
  transition: color 0.16s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f1b545, #ffde91);
}

/* Nav actions */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
}

.nav-actions .helper-text {
  color: var(--text-muted);
  white-space: nowrap;
}

.nav-actions .helper-text span {
  color: var(--accent);
}

.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 9px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.btn-outline {
  border: 1px solid rgba(241, 181, 69, 0.34);
  color: #ffdd8a;
  background: rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
  background: rgba(241, 181, 69, 0.10);
  transform: translateY(-0.5px);
}

.btn-solid {
  background: linear-gradient(135deg, #f9c85b, #f0a93a);
  color: #241505;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.70);
}

.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.75);
}

/* Hero */

.hero-shell {
  padding: 42px 0 72px;
}

.page-inner.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: flex-start;
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(32px, 3.1vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-title span.highlight {
  color: #ffcf73;
}

.hero-lead {
  color: var(--text-muted);
  max-width: 34rem;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Pills */

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.pill {
  font-size: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(241, 181, 69, 0.38);
  color: #ffdd8a;
  background: radial-gradient(circle at top left, rgba(241, 181, 69, 0.26), transparent 55%);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* Home gallery strip */

.hero-gallery-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-gallery-strip img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Quote card */

.quote-card {
  background: radial-gradient(circle at top right, rgba(241, 181, 69, 0.18), transparent 60%),
              linear-gradient(135deg, rgba(9, 12, 19, 0.98), rgba(5, 7, 12, 0.98));
  border-radius: 22px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: var(--shadow-soft);
}

.quote-title {
  font-size: 17px;
  margin-bottom: 8px;
}

.quote-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
}

.field label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.field input,
.field select,
.field textarea {
  background: rgba(4, 6, 11, 0.92);
  border-radius: 999px;
  border: 1px solid rgba(83, 93, 120, 0.9);
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13px;
  color: var(--text-main);
  outline: none;
}

.field textarea {
  border-radius: 14px;
  min-height: 76px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(141, 153, 183, 0.9);
}

.form-grid.full-width {
  grid-template-columns: minmax(0, 1fr);
}

.quote-card .btn-solid {
  width: 100%;
  margin-top: 14px;
}

/* Services page */

.page-hero-small {
  padding: 42px 0 18px;
}

.page-hero-small h1 {
  font-size: 28px;
  margin-bottom: 6px;
}

.page-hero-small p {
  font-size: 14px;
  color: var(--text-muted);
}

.section-block {
  padding: 8px 0 64px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 18px 18px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.70);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card h2 {
  font-size: 17px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
}

.service-card ul {
  margin-left: 16px;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.service-card li + li {
  margin-top: 3px;
}

.service-card img {
  width: 100%;
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  object-fit: cover;
  max-height: 180px;
}

/* Prices */

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 26px;
}

.price-card,
.info-panel {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.70);
  font-size: 14px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}

.price-table th,
.price-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #262b38;
}

.price-table th {
  text-align: left;
  font-weight: 600;
}

.price-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 26px;
}

.contact-panel {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.70);
  font-size: 14px;
}

.contact-panel h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-item {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-item span {
  color: #ffffff;
}

.map-placeholder {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
}

/* Footer */

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 24px 0 28px;
  background: radial-gradient(circle at bottom right, rgba(241, 181, 69, 0.10), rgba(3, 4, 7, 0.95));
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: contain;
}

.footer-links {
  display: grid;
  grid-auto-flow: column;
  gap: 22px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .page-inner.hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .quote-card {
    margin-top: 18px;
  }
  .card-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .pricing-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-gallery-strip {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding-inline: 16px;
  }
  .page-inner,
  .footer-inner {
    padding-inline: 16px;
  }
  .hero-shell {
    padding-top: 30px;
  }
}
