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

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #8B6914;
  --black: #0D0D0D;
  --charcoal: #1A1A1A;
  --dark: #111111;
  --off-white: #F7F3EE;
  --white: #FFFFFF;
  --text-muted: #888;
  --border: rgba(201,169,110,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
}


.preheader {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
}
.preheader a { color: var(--black); text-decoration: none; font-weight: 600; }
.preheader a:hover { text-decoration: underline; }


header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--off-white); font-style: italic; font-weight: 300; }

nav { display: flex; align-items: center; gap: 36px; }
nav a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
nav a:hover { opacity: 1; color: var(--gold); }

.header-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 500;
  opacity: 1 !important;
  letter-spacing: 0.08em;
  font-size: 12.5px;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.header-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }


.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  outline: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--off-white); border-radius: 2px; transition: all 0.3s; }


.hero {
  position: relative;
  min-height: 100svh; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201,169,110,0.1) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, #0a0805 100%);
}

.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201,169,110,0.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201,169,110,0.04) 60px);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.hero-badge::before, .hero-badge::after { content: '◆'; font-size: 7px; opacity: 0.6; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(62px, 10vw, 110px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin-bottom: 10px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
  font-weight: 300;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 15px 38px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--off-white);
  padding: 15px 38px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

section { padding: 100px 40px; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--off-white);
}
.section-title em { font-style: italic; color: var(--gold); }


.about { background: var(--charcoal); }
.about-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 2px;
  background: linear-gradient(135deg, #1c1710 0%, #2a2015 40%, #1a150c 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}


.about-photo img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-illustration {
  width: 85%;
  height: 85%;
  opacity: 0.7;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 22px 26px;
  border-radius: 2px;
  text-align: center;
}
.about-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}
.about-badge span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #aaa;
  margin-bottom: 22px;
  font-weight: 300;
}

.about-text p.about-description {
  margin-top: 28px;
}

.feature-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(201,169,110,0.06);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 13.5px;
  color: var(--off-white);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.pill-icon {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}


.amenities { background: var(--black); }
.amenities-inner { max-width: 1180px; margin: 0 auto; }
.amenities-header { margin-bottom: 60px; text-align: center; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s;
}
.amenity-item:hover { border-color: var(--gold); }
.amenity-icon {
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}
.amenity-name {
  font-size: 14px;
  color: var(--off-white);
  font-weight: 400;
}


.gallery { background: var(--charcoal); }
.gallery-inner { max-width: 1180px; margin: 0 auto; }
.gallery-header { margin-bottom: 60px; text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}
.gallery-item:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
}
.gallery-item {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: var(--black);
  cursor: pointer;
}
.gallery-item img {
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }


.location { background: var(--black); }
.location-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch; 
}

.location-map {
  width: 100%;
  height: 100%;         
  min-height: 450px;   
  background: var(--charcoal);
  border: 3px solid var(--border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}


.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;    
  

  filter: grayscale(100%) invert(92%) contrast(83%) sepia(10%);
  opacity: 0.75;
  transition: filter 0.4s ease, opacity 0.4s ease;
}


.location-map:hover iframe {
  filter: none;
  opacity: 1;
}

.location-text {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.near-list { margin-top: 36px; }
.near-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.near-icon { font-size: 18px; color: var(--gold); width: 32px; text-align: center; }
.near-name { font-size: 14px; color: var(--off-white); font-weight: 400; }
.near-dist { font-size: 12px; color: var(--gold); margin-left: auto; letter-spacing: 0.05em; font-weight: 500; }


.contact { background: var(--charcoal); }
.contact-inner { max-width: 1180px; margin: 0 auto; }
.contact-header { margin-bottom: 60px; text-align: center; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.honeypot-field { display: none; }

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 14px;
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  outline: none;
}


.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 120px; }

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

.submit-btn {
  width: 100%;
  font-size: 13px;
  padding: 16px;
}
.submit-btn:disabled { opacity: .6; cursor: not-allowed; }

.form-status {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  padding: 0;
}
.form-status:empty { display: none; }
.form-status.success {
  color: #6ee7b7;
  border-left: 2px solid #6ee7b7;
  padding-left: 14px;
}
.form-status.error {
  color: #fca5a5;
  border-left: 2px solid #fca5a5;
  padding-left: 14px;
}

/* ---- Kalendar dostupnosti ---- */
.booking-calendar {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--off-white);
}
.cal-nav {
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 2px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.cal-nav:hover:not(:disabled) { background: var(--gold); color: var(--black); }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-cell {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  color: var(--off-white);
  cursor: pointer;
  transition: all 0.15s;
  padding: 0;
}
.cal-cell.cal-empty { cursor: default; }
.cal-cell.is-free { background: rgba(110,231,183,0.08); border-color: rgba(110,231,183,0.25); }
.cal-cell.is-free:hover { background: rgba(110,231,183,0.22); border-color: #6ee7b7; }
.cal-cell.is-booked {
  background: rgba(220,68,68,0.14);
  border-color: rgba(220,68,68,0.4);
  color: #fca5a5;
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-cell.is-past { color: var(--text-muted); opacity: 0.35; cursor: not-allowed; }
.cal-cell.is-in-range { background: rgba(201,169,110,0.2); border-color: var(--border); color: var(--off-white); }
.cal-cell.is-start, .cal-cell.is-end {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
}
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-muted); }
.legend-dot { width: 12px; height: 12px; border-radius: 2px; display: inline-block; }
.legend-dot.dot-free { background: rgba(110,231,183,0.25); border: 1px solid #6ee7b7; }
.legend-dot.dot-booked { background: rgba(220,68,68,0.2); border: 1px solid rgba(220,68,68,0.6); }
.legend-dot.dot-selected { background: var(--gold); }
.cal-loading { margin-top: 12px; font-size: 12px; color: var(--text-muted); }
.cal-loading.cal-error { color: #fca5a5; }

.cal-selection {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(201,169,110,0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.cal-selection-item { display: flex; flex-direction: column; gap: 4px; }
.cal-selection-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.cal-selection-item strong { font-size: 14px; color: var(--off-white); font-weight: 500; }
.cal-selection-arrow { color: var(--gold); font-size: 18px; }

.contact-info-side { padding-left: 20px; }
.contact-info-side .section-title { font-size: 38px; margin-bottom: 20px; }
.contact-info-side h3.main-contact-title { font-size: 38px; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-detail-text strong { display: block; font-size: 14px; color: var(--off-white); margin-bottom: 3px; }
.contact-detail-text span { font-size: 13px; color: var(--text-muted); }
.contact-detail-text a { color: var(--gold-light); text-decoration: none; font-size: 13px; }
.contact-detail-text a:hover { color: var(--gold); }

.social-links { margin-top: 40px; }
.social-links-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  color: var(--off-white);
  transition: all 0.2s;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.social-btn.instagram:hover { border-color: #E1306C; color: #E1306C; }
.social-btn.facebook:hover { border-color: #1877F2; color: #1877F2; }
.social-btn.whatsapp:hover { border-color: #25D366; color: #25D366; }
.social-btn.viber:hover { border-color: #7360F2; color: #7360F2; }


footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 18px; display: block; }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gold); }

.float-contact {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 24px; height: 24px; }
.float-wa { background: #25D366; }
.float-vb { background: #7360F2; }


@media (max-width: 900px) {
  header { padding: 0 20px; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--charcoal);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .hamburger { display: flex; }
  section { padding: 64px 20px; }
  .about-inner, .location-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 30px; }
  .about-badge { right: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .float-contact { bottom: 20px; right: 20px; }
  .contact-info-side { padding-left: 0; }
  .location-text { padding-left: 0; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .feature-pills { grid-template-columns: 1fr; }
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}
.legal-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 10px;
}
.legal-container .updated-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legal-section {
  margin-bottom: 35px;
}
.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--off-white);
  margin-bottom: 15px;
  font-weight: 400;
}
.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 15px;
  font-weight: 300;
}
.legal-section ul {
  list-style: none;
  padding-left: 10px;
  margin-bottom: 15px;
}
.legal-section ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.legal-section ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 1px;
}