* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
:root {
  --gold: #c8a97e;
  --gold-dark: #a0825a;
  --dark: #1a1a1a;
  --soft: #f9f5f0;
  --text: #444;
  --muted: #777;
  --border: #e8ddd3;
  --white: #fff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --transition: 0.3s ease;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--dark);
}
p { margin: 0; color: var(--text); }
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--gold);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }
.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 78px 0; }
.section--soft { background: var(--soft); }
.section-head { margin-bottom: 38px; }
.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-title { font-size: clamp(1.9rem, 3vw, 2.8rem); margin-bottom: 12px; }
.section-desc { max-width: 700px; font-size: 1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn--primary {
  background: var(--gold);
  color: #fff;
}
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover { background: var(--gold); color: #fff; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.topbar__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
}
.brand__sub {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--dark);
}
.nav,
.nav__links,
.nav__actions {
  display: flex;
  align-items: center;
}
.nav {
  gap: 18px;
}
.nav__links {
  gap: 14px;
}
.nav__links a {
  font-size: 0.86rem;
  font-weight: 700;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--gold); }
.mobile-panel {
  display: none;
  padding: 0 0 18px;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-weight: 700;
}
.hero {
  padding: 72px 0 48px;
  background: linear-gradient(135deg, #fdf8f3 0%, #f6eee2 50%, #e9dbc5 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(200, 169, 126, 0.15);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 18px;
}
.hero__title .accent { color: var(--gold); }
.hero__text {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.06rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.hero__fact {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
}
.hero__fact strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold-dark);
}
.hero__card {
  position: relative;
  min-height: 460px;
  padding: 32px;
  border-radius: 36px;
  background: linear-gradient(145deg, #d5b894, #c8a97e 55%, #b78e68);
  box-shadow: 0 20px 60px rgba(200, 169, 126, 0.35);
  color: rgba(255, 255, 255, 0.92);
}
.hero__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 55%);
}
.hero__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 396px;
}
.hero__card-kicker {
  margin-bottom: 10px;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__card-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #8c7a67;
  font-size: 0.85rem;
}
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(200, 169, 126, 0.13);
  font-size: 1.5rem;
}
.card__title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.card__text { color: var(--muted); }
.service-list {
  display: grid;
  gap: 16px;
}
.service-list li {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.service-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
}
.about-grid,
.contact-grid,
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}
.panel {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.panel--dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2b1f1f 100%);
  color: #fff;
  border: 0;
}
.panel--dark h2,
.panel--dark h3,
.panel--dark p,
.panel--dark li,
.panel--dark a { color: inherit; }
.contact-list {
  display: grid;
  gap: 16px;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
}
.form-group select option { color: #111; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
}
.map-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow);
}
.map-badge p { font-size: 0.84rem; }
.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.cta-strip {
  padding: 58px 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.cta-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.cta-strip h2,
.cta-strip p { color: #fff; }
.footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 30px;
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(200, 169, 126, 0.26), transparent 60%),
    linear-gradient(145deg, #171717 0%, #111111 65%, #0d0d0d 100%);
  color: rgba(255,255,255,0.82);
}
.footer__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 126, 0.28), transparent 70%);
  pointer-events: none;
}
.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer__brand {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}
.footer__title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer__desc {
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  max-width: 420px;
}
.footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.footer__chips span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f5e7d1;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 126, 0.4);
  background: rgba(200, 169, 126, 0.14);
}
.footer__links {
  display: grid;
  gap: 8px;
}
.footer__links a {
  color: rgba(255,255,255,0.82);
  transition: color var(--transition), transform var(--transition);
}
.footer__links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}
.footer__bottom-links {
  display: flex;
  gap: 18px;
}
.footer__bottom-links a {
  color: rgba(255,255,255,0.78);
}
.footer__bottom-links a:hover {
  color: var(--gold);
}
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  font-size: 1.5rem;
}
@media (max-width: 980px) {
  .hero__grid,
  .card-grid--three,
  .card-grid--two,
  .about-grid,
  .contact-grid,
  .split-grid,
  .footer__grid,
  .cta-strip__inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .nav { display: none; }
  .nav-toggle { display: inline-block; }
  .hero__facts { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero { padding-top: 52px; }
  .map-badge {
    position: static;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--border);
  }
}
