/* ===== Design Tokens ===== */
:root {
  --color-green: #26BA8B;
  --color-cream: #F4F2EC;
  --color-dark: #79253D;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Raleway', sans-serif;
  --max-width: 1600px;
  --section-padding: 5rem 1.5rem;
}

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

/* ===== Base ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-black);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h2 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.35rem;
}

/* ===== Layout ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-padding);
}

/* ===== Header ===== */
.site-header {
  background-color: var(--color-green);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.site-header img {
  width: 80vw;
  max-width: 1000px;
  height: auto;
}

.site-header h1 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 400;
}

/* ===== Welcome ===== */
.welcome h1 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

/* ===== Map ===== */
#map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  border: 3px solid var(--color-green);
  z-index: 1;
}

@media (min-width: 768px) {
  #map {
    height: 100%;
    min-height: 350px;
  }
}

/* ===== Content Sections (alternating image/text) ===== */
.content-section .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {

  .content-section .container {
    gap: 10rem;
  }

}

.content-section__text ul {
  list-style: none;
  padding-left: 0;
}

.content-section__text ul li::before {
  content: "• ";
  color: var(--color-green);
  font-weight: 700;
}

.content-section__image img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .content-section .container {
    grid-template-columns: 1fr 1fr;
  }

  .content-section--reverse .content-section__image {
    order: -1;
  }
}

/* ===== Costs pricing list ===== */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.pricing-list li {
  padding: 0.35rem 0;
}

.pricing-list li::before {
  content: "✓ ";
  color: var(--color-green);
  font-weight: 700;
}

/* ===== Site Rules ===== */
.rules {
  text-align: center;
  background-color: var(--color-white);
}

.rules p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Address block ===== */
.address {
  font-style: normal;
  margin-top: 1rem;
  line-height: 1.8;
}

.address strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-dark);
}

/* ===== See You Soon ===== */
.see-you-soon {
  text-align: center;
  background-color: var(--color-white);
}

.see-you-soon p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.phone-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  display: inline-block;
  margin-top: 0.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-green);
  color: var(--color-white);
  transition: background-color 0.2s;
}

.social-links a:hover {
  background-color: var(--color-dark);
  text-decoration: none;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--color-green);
  color: var(--color-white);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.site-footer h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.site-footer address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.site-footer a {
  color: var(--color-white);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background-color 0.2s;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.site-footer small {
  opacity: 0.7;
  font-size: 0.85rem;
}

/* ===== Leaflet overrides ===== */
.leaflet-control-attribution a {
  color: var(--color-green) !important;
}
