:root {
  --dark: #49494b;
  --grey: #bfbfbf;
  --light: #e6e7e2;
  --accent: #b3684e;
  --white: #ffffff;

  --container: 1140px;
  --radius: 10px;
  --page: #f5f4f1;
}

/* ===== FONTS ===== */

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfairdisplay-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET ===== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--dark);
   background: var(--page);
}

h1, h2 {
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ===== TYPOGRAPHY ===== */

h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  text-align: center;
}


h2 {
  margin-top: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 700;
  }

p {
  margin-top: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ===== LAYOUT ===== */

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0 120px 0;
}

/* ===== HEADER ===== */

.site-header {
  background: var(--page);
  border-bottom: 1px solid rgba(73, 73, 75, 0.12);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.hero-button {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-button:hover {
  opacity: 0.9;
}
.lang {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity 0.2s ease;
  letter-spacing: .15em;
  font-size: 0.85rem;
}


/* ===== BUTTON ===== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity 0.2s ease;
  letter-spacing: .15em;
  font-size: 0.85rem;
  line-height: 1;
  text-align: center;
 }


.button:hover {
  opacity: 0.88;
}

.button-small {
  min-height: 50px;
  padding: 0 18px;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  background:
linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.45)
    ),
    url("images/hero-bg.webp") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 720px;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--white);
  font-size: clamp(2.7rem, 5.8vw, 5.2rem);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-tagline {
  margin: 24px auto 0;
  max-width: 680px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


/* ===== INTRO ===== */

.intro {
  background: var(--page);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.eyebrow {
  margin-bottom: 18px;
  color: rgba(73, 73, 75, 0.62);
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.intro-heading h2 {
  max-width: 520px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.intro-content {
  max-width: 680px;
}

.intro-content > p {
  max-width: 620px;
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.65;
  color: rgba(73, 73, 75, 1);
}

.services-list {
  margin-top: 48px;
  border-top: 1px solid rgba(73, 73, 75, 0.18);
}

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid rgba(73, 73, 75, 0.18);
  
}

.service-item span {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-item p {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.4;
  font-weight: 700;
}


/* ===== KOHTEET ===== */

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.property-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

.property-content {
  padding-top: 18px;
}

.property-content h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.property-content p {
  margin-bottom: 16px;
  color: rgba(73,73,75,0.82);
}

.text-link {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  font-weight: 600;
}
.text-link:hover {
  color: var(--dark);
}

.properties {
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

/* ===== FOOTER ===== */

.site-footer {
  margin-top: 0px;
  padding: 72px 0 28px;
  background: var(--dark);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.footer-main h2 {
  max-width: 480px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact strong {
  color: var(--white);
}

.footer-contact a {
  text-decoration: none;
}

.footer-actions {
  margin-top: 28px;
}

.footer-button {
  background: var(--white);
  color: var(--dark);
  width: fit-content;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
  text-align: left;
}
.footer-label {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-side {
  justify-self: end;
  max-width: 320px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 800px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

 .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 0;
  }

  .logo {
    text-align: center;
  }

  .nav {
    justify-content: center;
    width: 100%;
    gap: 14px;
  }
  

.hero {
  min-height: 420px;
}

  .hero-content {
    padding: 32px;
  }

  .section {
    padding: 48px 0;
  }

  .intro-grid,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-text,
  .services-box,
  .contact-card {
    padding: 28px;
  }

  .button {
    width: 100%;
  }

  .footer-button {
    width: auto;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-main h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-side {
    justify-self: center;
    max-width: none;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-actions {
    display: flex;
    justify-content: center;
  }
    .properties-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
}

@media (max-width: 520px) {
.hero {
  min-height: 360px;
}

  .hero-content {
    padding: 24px;
  }
  .footer-button {
    width: 100%;
  }
}