@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&display=swap');

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

:root {
  --bg-deep:       #1A1810;
  --bg-base:       #23200F;  /* was 2C2A1E */
  --bg-surface:    #2E2B19;
  --bg-card:       #37331F;
  --gold:          #C49A1A;
  --gold-light:    #E0B84A;
  --gold-dim:      #8A6A0A;
  --cream:         #F0EAD6;
  --cream-muted:   #B8AA90;
  --stone:         #7A6E58;
  --white:         #FDFAF4;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Barlow', sans-serif;
  --font-cond:     'Barlow Condensed', sans-serif;
  --nav-height:    120px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ───── NAVIGATION ───── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(26, 24, 16, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 154, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img {
  height: 108px;
  filter: none;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.nav-logo-text span:last-child {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cream-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg-deep) !important;
  padding: 10px 22px !important;
  border-radius: 2px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

/* ───── BUTTONS ───── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 2px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg-deep); }

/* ───── SECTION COMMONS ───── */
section { padding: 96px 48px; }

.section-label {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 19px;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 580px;
}

.divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

/* ───── SERVICE AREA ───── */
.service-area {
  background: var(--bg-surface);
  padding: 96px 48px;
  border-top: 1px solid rgba(196,154,26,0.12);
}

.service-area-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}

.service-cities {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.city-group h4 {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.city-group p {
  font-size: 15px;
  color: var(--cream-muted);
  line-height: 1.75;
}

.service-area-map {
  position: sticky;
  top: 130px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.map-frame {
  width: 100%;
  flex: 1;
  min-height: 520px;
  border: 1px solid rgba(196,154,26,0.25);
  overflow: hidden;
  background: #1A1810;
}

.map-note {
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--cream-muted);
  margin-top: 14px;
  text-align: center;
}

@media (max-width: 900px) {
  .service-area { padding: 72px 24px; }
  .service-area-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-area-map { position: static; }
  .map-frame { height: 320px; }
}

/* ───── FOOTER ───── */
footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(196, 154, 26, 0.15);
  padding: 60px 48px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 52px;
  filter: none;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.75;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 16px;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-col p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(196, 154, 26, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--stone);
  letter-spacing: 0.05em;
}

/* ───── TEXTURE OVERLAY ───── */
.texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* ───── GOLD RULE ───── */
.gold-rule {
  border: none;
  border-top: 1px solid rgba(196, 154, 26, 0.25);
  margin: 0;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  section { padding: 72px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  section { padding: 60px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 48px 20px 28px; }
}
