:root {
  --ink: #111418;
  --paper: #f4f1eb;
  --paper-2: #eeeae3;
  --gold: #b7812e;
  --muted: #55524e;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button { font: inherit; }

.hero {
  position: relative;
  min-height: 720px;
  height: 82vh;
  max-height: 920px;
  color: white;
  overflow: hidden;
  background-image: url('/assets/hero.webp');
  background-size: cover;
  background-position: center center;
  isolation: isolate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9,12,16,.68) 0%, rgba(9,12,16,.20) 18%, rgba(9,12,16,0) 36%),
    linear-gradient(90deg, rgba(9,12,16,.98) 0%, rgba(9,12,16,.95) 30%, rgba(9,12,16,.76) 42%, rgba(9,12,16,.22) 58%, rgba(9,12,16,.05) 72%);
}
.topbar {
  width: min(1420px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.brand img {
  display: block;
  width: 156px;
  height: auto;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
  font-size: 13px;
  letter-spacing: .08em;
}
.contact-nav {
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity .2s ease;
}
.contact-nav:hover { opacity: .72; }
.divider { width: 1px; height: 24px; background: rgba(255,255,255,.38); }
.language-switch { display: flex; align-items: center; gap: 7px; }
.lang {
  border: 0;
  padding: 2px 0;
  background: transparent;
  color: rgba(255,255,255,.58);
  cursor: pointer;
  letter-spacing: .08em;
}
.lang.active { color: white; border-bottom: 1px solid var(--gold); }

.hero-content {
  width: min(1420px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: clamp(145px, 18vh, 220px);
  max-width: 1420px;
}
.hero-content h1 {
  margin: 0;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(58px, 5vw, 86px);
  line-height: .98;
  letter-spacing: -.035em;
}
.gold-line { width: 84px; height: 2px; background: var(--gold); margin: 34px 0 26px; }
.gold-line.small { width: 46px; margin: 20px 0 28px; }
.hero-content p {
  margin: 0;
  max-width: 540px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}

.section-shell {
  width: min(1360px, calc(100% - 96px));
  margin: 0 auto;
}
.intro {
  display: grid;
  grid-template-columns: .9fr 1.7fr;
  gap: 100px;
  padding: 92px 0 70px;
}
.intro h2, .contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -.035em;
}
.intro-copy {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
  color: #2e2c29;
}
.intro-copy p { margin: 0 0 22px; }

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0 96px;
}
.service-card {
  min-height: 300px;
  padding: 34px 38px 24px;
  text-align: center;
  border-left: 1px solid #d7d2ca;
}
.service-card:first-child { border-left: 0; }
.service-card svg {
  width: 62px;
  height: 62px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin: 25px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.service-card p {
  margin: 0 auto;
  max-width: 235px;
  color: #45413d;
  font-size: 15px;
  line-height: 1.65;
}

.contact {
  border-top: 1px solid #d8d3cb;
  padding: 72px 0 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.contact-copy p {
  max-width: 560px;
  color: #3c3935;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.contact-email {
  border-left: 1px solid #cfc9c0;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.contact-email svg {
  width: 76px;
  height: 76px;
  stroke: var(--gold);
  stroke-width: 1.35;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-email a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 42px);
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.villas-link {
  border-top: 1px solid #d8d3cb;
  background: #f8f5ef;
  min-height: 72px;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  text-align: center;
  color: #383530;
  font-size: 15px;
}
.villas-link .star { color: var(--gold); margin-right: 6px; }
.villas-link a { color: #9a671d; text-underline-offset: 3px; }

footer {
  min-height: 112px;
  padding: 24px max(48px, calc((100% - 1360px)/2));
  background: #121416;
  color: rgba(255,255,255,.72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand img { width: 112px; display: block; }
footer p { margin: 0; font-size: 13px; }

@media (max-width: 980px) {
  .hero { min-height: 680px; height: 78vh; background-position: 61% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8,11,15,.82) 0%, rgba(8,11,15,.32) 24%, rgba(8,11,15,.20) 100%),
      linear-gradient(90deg, rgba(8,11,15,.95) 0%, rgba(8,11,15,.72) 55%, rgba(8,11,15,.18) 100%);
  }
  .topbar, .hero-content, .section-shell { width: min(100% - 52px, 1360px); }
  .intro { grid-template-columns: 1fr; gap: 16px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3) { border-left: 0; border-top: 1px solid #d7d2ca; }
  .service-card:nth-child(4) { border-top: 1px solid #d7d2ca; }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .contact-email { border-left: 0; border-top: 1px solid #cfc9c0; padding-top: 34px; min-height: 130px; justify-content: flex-start; }
}

@media (max-width: 640px) {
  .hero { min-height: 660px; height: 86svh; max-height: none; background-position: 66% center; }
  .topbar { width: calc(100% - 36px); padding-top: 22px; }
  .brand img { width: 116px; }
  .top-actions { gap: 12px; font-size: 11px; padding-top: 8px; }
  .divider { height: 18px; }
  .hero-content { width: calc(100% - 36px); padding-top: 185px; }
  .hero-content h1 { font-size: clamp(48px, 14vw, 64px); max-width: 92%; }
  .hero-content p { font-size: 16px; max-width: 92%; }
  .gold-line { margin-top: 26px; margin-bottom: 20px; }
  .section-shell { width: calc(100% - 36px); }
  .intro { padding: 68px 0 42px; }
  .intro h2, .contact h2 { font-size: 43px; }
  .intro-copy { font-size: 16px; }
  .services { grid-template-columns: 1fr; padding-bottom: 56px; }
  .service-card { border-left: 0; border-top: 1px solid #d7d2ca; min-height: auto; padding: 38px 18px; }
  .service-card:first-child { border-top: 0; }
  .service-card:nth-child(3), .service-card:nth-child(4) { border-top: 1px solid #d7d2ca; }
  .contact { padding: 56px 0 60px; }
  .contact-email { gap: 18px; }
  .contact-email svg { width: 58px; height: 58px; }
  .contact-email a { font-size: 29px; }
  .villas-link { font-size: 14px; padding: 20px 22px; }
  footer { padding: 26px 18px; flex-direction: column; text-align: center; gap: 18px; }
}
