:root {
  --site-primary: #2c3848;
  --site-primary-dark: #15212e;
  --site-accent: #b19a37;
  --bs-body-bg: #fafafa;
  --bs-body-color: #0e1623;
  --bs-body-font-family: 'Lexend', sans-serif;
  --bs-link-color: #2c3848;
  --bs-link-hover-color: #15212e;
}

body {
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lexend', serif;
}

a { color: var(--site-primary); }
a:hover { color: var(--site-primary-dark); }

.btn-primary {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--site-primary-dark);
  border-color: var(--site-primary-dark);
  color: #fff;
}
.btn-outline-primary {
  color: var(--site-primary);
  border-color: var(--site-primary);
  background-color: transparent;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}
.bg-primary { background-color: var(--site-primary) !important; }
.text-primary { color: var(--site-primary) !important; }
.border-primary { border-color: var(--site-primary) !important; }

/* ---------- Buttons: sharp-outline family ---------- */
.btn {
  border-radius: 0;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-width: 1.5px;
  box-shadow: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }

/* ---------- Cards: pill-everywhere + colored-tint shadow ---------- */
.card {
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(44, 56, 72, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44, 56, 72, 0.18);
}

/* Section wrapper cards: oversized-bordered-cards rhythm */
.section-card {
  max-width: 72rem;
  margin: 0 auto;
  border: 3px solid var(--site-accent);
  border-radius: 24px;
  background: #fff;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 8px 24px rgba(44, 56, 72, 0.1);
}

section.py-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

img {
  border-radius: 16px;
}

.form-control, .form-select {
  border-radius: 12px;
  border: 1.5px solid var(--site-primary);
  padding: 0.65rem 1rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--site-accent);
  box-shadow: 0 0 0 0.2rem rgba(177, 154, 55, 0.2);
}

label { font-weight: 600; color: var(--bs-body-color); }

/* ---------- Navbar ---------- */
.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(44, 56, 72, 0.08);
}
.navbar-brand span {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.navbar .logo-mark {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 0;
}
.nav-link {
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--site-accent) !important; }

/* ---------- Hero (fullbleed) ---------- */
.hero-fullbleed {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  overflow: hidden;
}
.hero-home {
  background-image: url('images/hero-terrazza-grill.jpg');
}
.map-frame {
  border: 0;
  min-height: 280px;
  border-radius: 16px;
}
.hero-fullbleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 22, 35, 0.28);
}
.hero-fullbleed .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 4rem 2rem 4.5rem;
}
.hero-title { font-size: 2.6rem; max-width: 38rem; }
.hero-sub { font-size: 1.15rem; max-width: 34rem; }
@media (min-width: 768px) {
  .hero-title { font-size: 3.2rem; }
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--site-primary-dark);
  color: #fafafa;
  padding-top: 3.5rem;
}
footer.site-footer a {
  color: #e7e9ec;
}
footer.site-footer a:hover {
  color: var(--site-accent);
}
footer.site-footer hr {
  border-color: rgba(255,255,255,0.15);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  border-top: 3px solid var(--site-accent);
  padding: 1.25rem 1.5rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .cookie-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ---------- Misc ---------- */
.max-w-prose-custom {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.reveal { opacity: 1; }

.newsletter-input { max-width: 260px; }

.form-confirm {
  display: none;
  border: 2px solid var(--site-accent);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  background: #fff;
}
.form-confirm.show { display: block; }
